首頁 >後端開發 >C++ >如何隱藏 WPF 視窗中的關閉按鈕,同時保留

如何隱藏 WPF 視窗中的關閉按鈕,同時保留

Patricia Arquette
Patricia Arquette原創
2025-01-02 16:23:38964瀏覽

How to Hide the Close Button in a WPF Window While Keeping the

在WPF Windows 中隱藏關閉按鈕

在WPF 中,建立模式對話框需要一個沒有關閉按鈕的窗口,同時保持可見的標題列。儘管探索了 ResizeMode、WindowState 和 WindowStyle 等屬性,但它們都無法滿足此特定需求。

要解決此問題,您可以利用 P/Invoke 來操縱視窗的樣式並實現所需的行為。操作方法如下:

  1. 將以下聲明加入您的 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);
  2. 在 Window 的 Loaded事件中,包含以下內容code:

    var hwnd = new WindowInteropHelper(this).Handle;
    SetWindowLong(hwnd, GWL_STYLE, GetWindowLong(hwnd, GWL_STYLE) & ~WS_SYSMENU);

透過執行此程式碼,您將成功隱藏標題列中的關閉按鈕,確保更直觀的模態對話框體驗。

重要注意事項:

雖然此解決方案在視覺上隱藏了關閉按鈕,但它並不能阻止用戶使用鍵盤快捷鍵(例如Alt F4)或透過工作列關閉視窗。為了防止視窗過早關閉,請考慮覆蓋 OnClosing 事件並將 Cancel 設為 true。

以上是如何隱藏 WPF 視窗中的關閉按鈕,同時保留的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn