1.wpf中重写window窗口样式,在代码中最大化窗口。
2.wpf中WindowState=“Maximized”最大化会把窗口项目栏掩盖
3.解决的办法,代码中手动获取显示屏幕大小,手动设置窗口大小
代码:
///
/// 定义一个全局rect记录还原状态下窗口的位置和大小。
///
Rect _rcnormal;
//最大化代码
_rcnormal = new Rect(this.Left, this.Top, this.Width, this.Height);//保存下当前位置与大小
this.Left = 0;//设置位置
his.Top = 0;
Rect rc = SystemParameters.WorkArea;//获取工作区大小
this.Width = rc.Width;
this.Height = rc.Height;
//回复原来代码
this.Left = _rcnormal.Left;
this.Top = _rcnormal.Top;
this.Width = _rcnormal.Width;
this.Height = _rcnormal.Height;