移动无边界WPF窗口

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移动无边界WPF窗口相关的知识,希望对你有一定的参考价值。

I wanted to create a borderless window, but still be able to move it. I thought it would be complicated, but just like a lot of things with WPF, things were simpler than I thought...
  1. public MainWindow()
  2. {
  3. InitializeComponent();
  4. this.MouseLeftButtonDown += delegate { this.DragMove(); };
  5. }

以上是关于移动无边界WPF窗口的主要内容,如果未能解决你的问题,请参考以下文章

Unity中timeline出现脚本错误怎么解决

在主窗口边界上方/外部显示 wpf 内容 [关闭]

确定何时移动 WPF 窗口

将一个窗口(无边界)放在另一个窗口(无边界)的顶部(z-index)上,这样顶部的窗口就会跟随底部的窗口

WPF 窗口仅垂直拖动

从控制台应用程序启动 WPF 窗口