WPF Windows에서 닫기 버튼 숨기기
질문: WPF 창에서 닫기 버튼을 숨기려면 어떻게 해야 하나요? 일반 제목 표시줄을 유지하면서?
WPF에는 닫기를 제거하는 내장 옵션이 없습니다. 창 제목 표시줄의 버튼입니다. 그러나 P/Invoke:
코드:
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); // In the Window's Loaded event var hwnd = new WindowInteropHelper(this).Handle; SetWindowLong(hwnd, GWL_STYLE, GetWindowLong(hwnd, GWL_STYLE) & ~WS_SYSMENU);
이 코드는 창 아이콘 및 시스템 메뉴와 함께 닫기 버튼을 숨깁니다.
참고: 이 접근 방식은 버튼만 숨깁니다. 키보드 단축키를 사용하거나 애플리케이션을 닫으면 창을 닫을 수 있습니다.
백그라운드 스레드가 실행 중일 때 창이 닫히지 않도록 하려면 OnClosing 메서드를 재정의하고 취소를 true로 설정하세요.
protected override void OnClosing(CancelEventArgs e) { e.Cancel = true; }
위 내용은 WPF 창에서 닫기 버튼을 숨기는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!