您好我正在执行此离开项目,并且用户界面在更换计算机时出现问题。我添加了一个代码来更改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());
}
}
}
提前致谢..!