常用配置 设置保持winform显示,不会因为分辨率和屏幕大小而变化

在winform的Program.cs文件中设置如下代码:

static class Program
   {
       [System.Runtime.InteropServices.DllImport("user32.dll")]
       private static extern bool SetProcessDPIAware();
       /// 
       /// 应用程序的主入口点。
       /// 
       [STAThread]
       static void Main()
       {
           if (Environment.OSVersion.Version.Major >= 6)
               SetProcessDPIAware();
           Application.EnableVisualStyles();
           Application.SetCompatibleTextRenderingDefault(false);
           Application.Run(new Form1());
       }
   }

你可能感兴趣的:(C#,winform,开发语言,c#)