c++Windows窗体
时间: 2023-12-31 16:11:58 浏览: 154
windows窗体
开发中,如何获取屏幕分辨率?
您可以使用 .NET 中的 Screen 类来获取屏幕分辨率。您可以通过以下 C# 代码获取主屏幕的宽度和高度:
int screenWidth = Screen.PrimaryScreen.Bounds.Width;
int screenHeight = Screen.PrimaryScreen.Bounds.Height;
记得在类的开头添加如下引用:
using System.Windows.Forms;
阅读全文