3 回答
TA贡献1786条经验 获得超13个赞
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事件中:
var hwnd = new WindowInteropHelper(this).Handle;
SetWindowLong(hwnd, GWL_STYLE, GetWindowLong(hwnd, GWL_STYLE) & ~WS_SYSMENU);
然后您就可以了:不再需要关闭按钮。标题栏的左侧也没有窗口图标,这意味着没有系统菜单,即使右键单击标题栏也是如此。
请注意,Alt + F4仍将关闭窗口。如果您不希望在完成后台线程之前关闭窗口,则也可以按照Gabe的建议重写OnClosing并将Cancel设置为true。
- 3 回答
- 0 关注
- 3407 浏览
相关问题推荐
添加回答
举报