Vanara/UnitTests/ExplorerBrowser/Program.cs

22 lines
596 B
C#
Raw Normal View History

2019-11-21 18:54:32 -05:00
//Copyright (c) Microsoft Corporation. All rights reserved.
using ExplorerBrowser;
2019-11-21 18:54:32 -05:00
using System;
using System.Windows.Forms;
namespace Microsoft.WindowsAPICodePack.Samples
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
2020-08-26 17:25:39 -04:00
Application.Run(new ShellNamespaceTreeControlTestForm()); //ExplorerBrowserTestForm());
2019-11-21 18:54:32 -05:00
}
}
}