如何隐藏MahApps.Metrowindow中的关闭按钮?
How to hide the close button in a MahApps.Metro window?
我正在尝试 hide/remove 我的 MahApps MetroWindow 上的关闭按钮但没有成功。
我试过这个代码:
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);
private void Window_Loaded(object sender, RoutedEventArgs e)
{
var hwnd = new WindowInteropHelper(this).Handle;
SetWindowLong(hwnd, GWL_STYLE, GetWindowLong(hwnd, GWL_STYLE) & ~WS_SYSMENU);
}
我还设置了一些属性:
...ShowTitleBar="False" WindowStyle="None" ResizeMode="NoResize"
Loaded="Window_Loaded" ...
所以 Window_Loaded 可以正确触发,但是这个 question 的代码似乎不起作用。
这是实际结果:
为什么按钮没有消失?我做错了什么?
您可以使用 MetroWindow
的 ShowCloseButton
依赖项 属性。
我正在尝试 hide/remove 我的 MahApps MetroWindow 上的关闭按钮但没有成功。
我试过这个代码:
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);
private void Window_Loaded(object sender, RoutedEventArgs e)
{
var hwnd = new WindowInteropHelper(this).Handle;
SetWindowLong(hwnd, GWL_STYLE, GetWindowLong(hwnd, GWL_STYLE) & ~WS_SYSMENU);
}
我还设置了一些属性:
...ShowTitleBar="False" WindowStyle="None" ResizeMode="NoResize"
Loaded="Window_Loaded" ...
所以 Window_Loaded 可以正确触发,但是这个 question 的代码似乎不起作用。
这是实际结果:
为什么按钮没有消失?我做错了什么?
您可以使用 MetroWindow
的 ShowCloseButton
依赖项 属性。