FormBorderStyle.None 时候最大化不遮盖任务栏
时间:2014-02-07 15:15:19
收藏:0
阅读:745
this.FormBorderStyle
= FormBorderStyle.None;
this.MaximumSize = new
Size(Screen.PrimaryScreen.WorkingArea.Width,
Screen.PrimaryScreen.WorkingArea.Height);
this.WindowState =
FormWindowState.Maximized;
原文:http://www.cnblogs.com/xm_cpppp/p/3539269.html
评论(0)