简单问题
this.DesktopBounds.Width是什么意思??
桌面宽度应该怎样表示?
桌面坐标基于屏幕的工作区,该区域不包括任务栏。桌面的坐标系统基于像素。如果应用程序在多监视器系统上运行,则该窗体的坐标是组合桌面的坐标。
可使用此属性相对 Windows 桌面上的其他窗体或应用程序调整某窗体的大小和位置。
下面的示例设置某窗体的大小和位置,以便该窗体位于距桌面左边框 50 个像素、距桌面的顶部 50 个像素处。此示例假定已在窗体类内定义该方法。 [C#] public void MoveMyForm() { // Create a Rectangle object that will be used as the bound of the form. Rectangle tempRect = new Rectangle(50,50,100,100); // Set the bounds of the form using the Rectangle object. this.DesktopBounds = tempRect; }
[此贴子已经被作者于2004-11-13 14:02:59编辑过]