码迷,mamicode.com
首页 > Windows程序 > 详细

c# WPF 窗口 默认打开全屏

时间:2020-11-21 12:10:27      阅读:16      评论:0      收藏:0      [点我收藏+]

标签:parameter   wpf   设置   窗口   state   style   most   windows   param   

MainWindow.xaml.cs里加入

// 设置全屏
this.WindowState = System.Windows.WindowState.Normal;
this.WindowStyle = System.Windows.WindowStyle.None;
this.ResizeMode = System.Windows.ResizeMode.NoResize;
this.Topmost = true;
this.Left = 0.0;
this.Top = 0.0;
this.Width = System.Windows.SystemParameters.PrimaryScreenWidth;
this.Height = System.Windows.SystemParameters.PrimaryScreenHeight;

c# WPF 窗口 默认打开全屏

标签:parameter   wpf   设置   窗口   state   style   most   windows   param   

原文地址:https://www.cnblogs.com/Python5421/p/13993850.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!