我用
Screen.PrimaryScreen.Bounds.Height
和
Screen.PrimaryScreen.Bounds.Width
渲染我的窗口(即它是一个百分比,所有按钮等都来自此)。双屏幕的预期效果如何?是否存在无法按预期工作的情况?
谢谢, 理查德
答案 0 :(得分:1)
您可能想尝试
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
您可能也会感兴趣: