我正在WPF中编写一个模式对话框。如何将WPF窗口设置为没有关闭按钮?我仍然希望它WindowState有一个正常的标题栏。
WindowState
我发现了ResizeMode,WindowState和WindowStyle,但是这些属性都不允许我隐藏关闭按钮,而是显示标题栏,如模式对话框中一样。
ResizeMode
WindowStyle
WPF没有内置的属性来隐藏标题栏的“关闭”按钮,但是您可以通过几行P / Invoke来实现。
首先,将这些声明添加到您的Window类中:
private const int GWL_STYLE = -16; private const int WS_SYSMENU = 0x80000; [DllImport("user32.dll", SetLastError = true)] private static extern int GetWindowLong(IntPtr hWnd, int nIndex); [DllImport("user32.dll")] private static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);
然后将以下代码放在Window的Loaded事件中:
Loaded
var hwnd = new WindowInteropHelper(this).Handle; SetWindowLong(hwnd, GWL_STYLE, GetWindowLong(hwnd, GWL_STYLE) & ~WS_SYSMENU);
然后您就可以了:不再需要关闭按钮。标题栏的左侧也没有窗口图标,这意味着没有系统菜单,即使您右键单击标题栏也是如此。
请注意,Alt+ F4仍将关闭窗口。如果您不希望在完成后台线程之前关闭窗口,则也可以按照Gabe的建议重写OnClosing并设置Cancel为true。
Alt
F4
OnClosing
Cancel