使用屏幕.双显示的主屏幕
本文关键字:屏幕 双显示 | 更新日期: 2023-09-27 18:01:03
我使用
Screen.PrimaryScreen.Bounds.Height
和
Screen.PrimaryScreen.Bounds.Width
渲染我的窗口(即,它是所有按钮等的百分比(。这会像预期的那样适用于双屏幕吗?是否存在无法按预期工作的情况?
谢谢,Richard
您可能想尝试
System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Height
System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Width
以避免与具有较大任务栏和其他内容的用户发生问题。
此方法的示例用法可以在MSDN上找到:
http://msdn.microsoft.com/en-us/library/system.windows.forms.screen.primaryscreen.aspx
你可能也会发现这个感兴趣的:
http://msdn.microsoft.com/en-us/library/ms812142.aspx