Windows窗体中的用户界面问题

时间:2017-08-30 05:16:38

标签: c# winforms user-interface

您好我正在执行此离开项目,并且用户界面在更换计算机时出现问题。我添加了一个代码来更改DPI,它可以解决基于计算机的问题。使用的代码是:

namespace WindowsFormsApplication1
{
static class Program
{
    [DllImport("user32.dll", SetLastError = true)]
    static extern bool SetProcessDPIAware();

    /// <summary>
    /// The main entry point for the application.
    /// </summary>
    [STAThread]
    static void Main()
    {
        if (Environment.OSVersion.Version.Major >= 6)
            SetProcessDPIAware();
        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault(false);
        Application.Run(new Login());
    }
}
}

这是有问题的计算机的显示: Computer with problem

这是没有问题的计算机的显示: Computer that does not have the problem

提前致谢..!

0 个答案:

没有答案