获取屏幕分辨率
int SH = Screen.PrimaryScreen.Bounds.Height;
int SW = Screen.PrimaryScreen.Bounds.Width;
获取窗口居中Top和Left
int thisH=100;
int thisW=200;
int SH = (Screen.PrimaryScreen.Bounds.Height - 30 - thisH) / 2;
int SW = (Screen.PrimaryScreen.Bounds.Width - 10 - thisW) / 2;
int SH = Screen.PrimaryScreen.Bounds.Height;
int SW = Screen.PrimaryScreen.Bounds.Width;
获取窗口居中Top和Left
int thisH=100;
int thisW=200;
int SH = (Screen.PrimaryScreen.Bounds.Height - 30 - thisH) / 2;
int SW = (Screen.PrimaryScreen.Bounds.Width - 10 - thisW) / 2;
本文介绍了如何使用C#获取屏幕的分辨率,并给出了一个简单的示例来计算如何使窗口在屏幕上居中显示。
751

被折叠的 条评论
为什么被折叠?



