如何隐藏MahApps.Metro窗口中的关闭按钮?

时间:2015-09-05 12:55:36

标签: c# wpf windows xaml mahapps.metro

我试图隐藏/删除我的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的代码似乎无效。

这是实际结果:

enter image description here

为什么按钮不会消失?我做错了什么?

1 个答案:

答案 0 :(得分:15)

您可以使用ShowCloseButton的{​​{1}}依赖项属性。