WPF 不遮挡任务栏最大化和全屏显示
在窗体不去边框的情况下,不遮挡任务栏最大化
MainWindow.xaml.cs
using System; using System.Windows; using System.Windows.Threading;
namespace thzSoftware { /// /// MainWindow.xaml 的交互逻辑 /// public partial class MainWindow : Window { DispatcherTimer mTimer; public MainWindow() { InitializeComponent(); mTimer = new DispatcherTimer(); mTimer.Interval = new TimeSpan(0, 0, 3);//定时间隔3秒 mTimer.Tick += MTimer_Tick;//加载事件,敲tab键事件框架可以自己
共有 0 条评论