Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've used the code in Removing Icon from a WPF window to remove the icon from the window of an application (using the attached property answer) and this has worked a treat, when run via Visual Studio 2010. When the application is run normally, the icon still appears.

The window has no icon assigned to its Icon property, the application does, however, have an icon defined in its properties (Application > Resources > Icon) which is the one that's being shown as the window icon.

How can I resolve this difference in behaviour so that the icon isn't shown when the application runs outside of Visual Studio 2010?

share|improve this question
I used the code from the referenced answer in a small WPF application's MainWindow to remove the Icon. It works in Visual Studio and when run from my project's Bin\Debug folder. Is there some other small detail that could affect this? – Ritch Melton Apr 7 '12 at 16:12

3 Answers

I did a bit of digging; there's a StackOverflow question that addresses your issue. Ironically, this fix only works outside of Visual Studio.

Relevant Parts of the Answer (by Zach Johnson):

It appears that WS_EX_DLGMODALFRAME only removes the icon when the WPF window's native Win32 window does not have an icon associated with it. WPF (conveniently) uses the application's icon as the default icon for all windows without an explicitly set icon. Normally, that doesn't cause any problems and saves us the trouble of manually setting the application's icon on each window; however, it causes a problem for us when we try to remove the icon.

Since the problem is that WPF automatically sets the window's icon for us, we can send WM_SETICON to the Win32 window to reset its icon when we are applying WS_EX_DLGMODALFRAME.

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);

Code to remove the icon:

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);

It works only when the app is run outside of Visual Studio.

share|improve this answer
Assuming you replace GetWindowLongPtr and SetWIndowLongPtr with GetWindowLong and SetWindowLong (ORing an IntPtr and an int, as done with currentStyle | WS_EX_DLGMODALFRAME does not work. Unfortunately this code doesn't work for me. Did you test it prior to placing the answer? (Also, it won't compile as it stands, there's no code in either this, or the referenced answer, for NativeMethods.GetWindowLongPtr) – Rob Apr 7 '12 at 7:41

Maybe the Shell integration library is an option for you? It contains this WindowChrome class to customize the non-client area, allowing you to leave out the icon.

share|improve this answer

Maybe this will help you to Hide the Window Buttons , not only the icon of a window but if you like the ( minimize,restore and Close ).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.