标签: c#
我想改变形式和其他常用控制PC的分辨率大小。
示例:如果PC分辨率1204.auto 1024和其他常用控件发生变化。
答案 0 :(得分:2)
查找屏幕高度和宽度并指定它们:
Screen scr = Screen.PrimaryScreen; int newWidth = scr.Bounds.Width; int newHeight = scr.Bounds.Height;