摘要:
MaximizeBox = false这句代码的意思就是:最大化按钮不可用,包括双击标题栏也不能使窗体最大化,单击标题栏最大化按钮为灰色this.MaximizeBox = false;this.WindowState = FormWindowState.Maximized;this.Left = (Screen.PrimaryScreen.Bounds.Width - this.Width) / 2;this.Top = (Screen.PrimaryScreen.Bounds.Height - this.Height)/2; 阅读全文
摘要:
例句:Screen.PrimaryScreen.Bounds.WidthScreen 获取单个系统上的一个或多个显示设备PrimaryScreen获取主显示Bounds边界这是windows Form里的系统参数,当然在windows CE的项目里也能调用 阅读全文