File: Program.cs | Web Access |
Project: src\src\System.Windows.Forms\tests\IntegrationTests\ScratchProject\ScratchProject.csproj (ScratchProject) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace ScratchProject; // This project is meant for temporary testing and experimenting and should be kept as simple as possible. internal static class Program { [STAThread] public static void Main() { Application.EnableVisualStyles(); Application.SetHighDpiMode(HighDpiMode.PerMonitorV2); Application.Run(new Form1()); } } |