在wpf中如何防止用户通过拖动标题栏来移动窗口?
由于你不能直接在WPF中定义
WndProc
,所以你需要获取一个HwndSource
,并为其添加一个钩子:
public Window1()
{
InitializeComponent();
this.SourceInitialized += Window1_SourceInitialized;
}
private void Window1_SourceInitialized(object sender, EventArgs e)
{
WindowInteropHelper helper = new WindowInteropHelper(this);
HwndSource source = HwndSource.FromHwnd(helper.Handle);
source.AddHook(WndProc);
}
const int WM_SYSCOMMAND = 0x0112;
const int SC_MOVE = 0xF010;
private IntPtr WndProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled)
{
switch(msg)
{
case WM_SYSCOMMAND:
int command = wParam.ToInt32() & 0xfff0;
if (command == SC_MOVE)
{
handled = true;
}
break;
default:
break;
}
return IntPtr.Zero;
}
确实很旧的线程和其他技术(例如 UWP 和 WinUI3)已经存在,但也许我的建议对其他人有帮助。
我通过设定来实现目标
WindowStyle="None"
在窗口中添加按钮并设置
IsCancel="True"
就是这样。不需要互操作代码。最小化代码。
alt + 空格仍然会调出窗口上下文菜单,让您可以访问所有命令。您需要实现逻辑来覆盖默认菜单项行为,以使此示例正常工作。