我也有同样的问题。看来
WS_EX_DLGMODALFRAME
仅当WPF窗口的本机Win32窗口没有与其关联的图标时才删除该图标。WPF(方便地)使用应用程序的图标作为所有窗口的默认图标,而没有显式设置图标。通常情况下,这不会引起任何问题,并为我们节省了在每个窗口上手动设置应用程序图标的麻烦;但是,当我们试图删除图标时,它会给我们带来一个问题。
WM_SETICON
.
const int WM_SETICON = 0x0080;
const int ICON_SMALL = 0;
const int ICON_BIG = 1;
[DllImport("User32.dll", CharSet = CharSet.Auto, SetLastError = true)]
static extern IntPtr SendMessage(
IntPtr hWnd,
int msg,
IntPtr wParam,
IntPtr lParam);
删除图标的代码:
IntPtr hWnd = new WindowInteropHelper(window).Handle;
int currentStyle = NativeMethods.GetWindowLongPtr(hWnd, GWL_EXSTYLE);
SetWindowLongPtr(
hWnd,
GWL_EXSTYLE,
currentStyle | WS_EX_DLGMODALFRAME);
// reset the icon, both calls important
SendMessage(hWnd, WM_SETICON, (IntPtr)ICON_SMALL, IntPtr.Zero);
SendMessage(hWnd, WM_SETICON, (IntPtr)ICON_BIG, IntPtr.Zero);
SetWindowPos(hWnd, IntPtr.Zero, 0, 0, 0, 0,
SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER | SWP_FRAMECHANGED);
编辑:
哦,看起来只有在应用程序运行的时候才起作用
外部
Visual Studio的。