摘要: FormBorderStyle等于System.Windows.Forms.FormBorderStyle.None的窗体,点击任务栏图标的时候,是不能象标准窗体那样最小化或还原的。protected override CreateParams CreateParams { get { const int WS_MINIMIZEBOX = 0x00020000;// Winuser.h中定义 CreateParams cp = base.CreateParams; cp.Style = cp.Style | WS_MINIMIZEBOX;// 允许最小化... 阅读全文
posted @ 2014-02-07 11:24 牧马 阅读(283) 评论(0) 推荐(0) 编辑
摘要: this.FormBorderStyle = FormBorderStyle.None; this.MaximumSize = new Size(Screen.PrimaryScreen.WorkingArea.Width, Screen.PrimaryScreen.WorkingArea.Height); this.WindowState = FormWindowState.Maximized;转自:http://wisecn.blog.163.com/blog/static/19755864520120644738257/ 阅读全文
posted @ 2014-02-07 11:01 牧马 阅读(546) 评论(0) 推荐(0) 编辑