Drag-Drop-Explorer

This commit is contained in:
2023-01-02 10:10:53 -07:00
parent af24897853
commit 110b306206
13 changed files with 497 additions and 1 deletions

View File

@ -0,0 +1,15 @@
namespace View_by_Distance.Drag_Drop_Explorer;
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
ApplicationConfiguration.Initialize();
Application.Run(new Form());
}
}