初始化时使window 全屏 且显示任务栏 wpf
时间:2019-11-25 13:54:51
收藏:0
阅读:270
void IniWindowFullScreemAndDisplayTaskbar()
{
this.Width = SystemParameters.FullPrimaryScreenWidth;
this.Height = SystemParameters.FullPrimaryScreenHeight + 22;
this.Left = 0;
this.Top = 0;
this.WindowState = WindowState.Normal;
}
原文:https://www.cnblogs.com/Zhang9823/p/11926852.html
评论(0)