WPF程序最大化被任务栏遮挡的解决办法
this.MaxHeight = SystemParameters.MaximizedPrimaryScreenHeight;
this.MaxWidth = SystemParameters.MaximizedPrimaryScreenWidth;
WINFORM程序最大化被任务栏遮挡的解决办法
this.MaximizedBounds = Screen.PrimaryScreen.WorkingArea;
WPF程序最大化被任务栏遮挡的解决办法
this.MaxHeight = SystemParameters.MaximizedPrimaryScreenHeight;
this.MaxWidth = SystemParameters.MaximizedPrimaryScreenWidth;
WINFORM程序最大化被任务栏遮挡的解决办法
this.MaximizedBounds = Screen.PrimaryScreen.WorkingArea;