adriano 的个人资料adriano网上的家照片日志列表 工具 帮助
2007/6/8

双屏幕显示问题的解决

如要将窗体移到辅显示器上显示,只需一行代码:
this.DesktopLocation=Screen.AllScreens[1].Bounds.Location;
如果要在辅显示器上全屏显示:
this.FormBorderStyle=FormBorderStyle.None;
this.DesktopBounds=Screen.AllScreens[1].Bounds;