摘要: 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; 阅读全文
posted @ 2012-04-12 13:34 小四儿 阅读(375) 评论(1) 推荐(0) 编辑
摘要: 例句:Screen.PrimaryScreen.Bounds.WidthScreen 获取单个系统上的一个或多个显示设备PrimaryScreen获取主显示Bounds边界这是windows Form里的系统参数,当然在windows CE的项目里也能调用 阅读全文
posted @ 2012-04-12 13:20 小四儿 阅读(672) 评论(0) 推荐(0) 编辑