vote up 0 vote down star

I am working with Windows Forms, is it possible to create a window which has text in the status bar, but has no text in the title bar at the top of the application? (Largely because the standard title text which prints on my Aero glass I have implemented looks terrible as it's too high and I am drawing my own text title and obviously don't want the double up).

This solution (http://stackoverflow.com/questions/198233/how-to-make-a-window-have-taskbar-text-but-no-title-bar) is not satisfactory as I still wish to keep a FixedDialog window frame.

Thanks for your help all.

** I am aware of John's recommendation, but still seeking clearer direction, anybody feel free to put forward your ideas **

flag

2 Answers

vote up 3 vote down check

This should do it:

[DllImport("uxtheme.dll")]
public static extern int SetWindowThemeAttribute(IntPtr hWnd, WindowThemeAttributeType wtype, ref WTA_OPTIONS attributes, uint size);

public struct WTA_OPTIONS
{
    public uint Flags;
    public uint Mask;
}
public static uint WTNCA_NODRAWCAPTION = 0x00000001;
public static uint WTNCA_NODRAWICON = 0x00000002;

WTA_OPTIONS wta = new WTA_OPTIONS() { Flags = WTNCA_NODRAWCAPTION | WTNCA_NODRAWICON, Mask = WTNCA_NODRAWCAPTION | WTNCA_NODRAWICON };

SetWindowThemeAttribute(this.Handle, WTA_NONCLIENT, ref wta, (uint)Marshal.SizeOf(typeof(WTA_OPTIONS)));
link|flag
Can't resolve 'WindowThemeAttributeType' or 'WTA_NONCLIENT'. – GONeale May 3 at 9:51
Nm. With help from this article (codeproject.com/KB/vista/…) I setup the references I needed. Cheers! This has been a big help. – GONeale May 3 at 10:10
Pinvoke.net is also a big help figuring out these interop structures and stuff. – Factor Mystic May 3 at 18:46
vote up 0 vote down

What you are talking about would require subclassing to get into the guts of the application. Esentially you would be skinning your form by intercepting certain messages (like WM_PAINT etc.). It's not a simple thing to do if you've never worked at that level before.

link|flag
Well I'm already knee deep in invoking unmanaged libraries with the DWM API. So I'm happy to hear all solutions. – GONeale Apr 2 at 12:04
Here is an introduction in case you haven't touched Subclassing or development in the deep internals of Windows: support.microsoft.com/kb/815775 – John Apr 2 at 14:43

Your Answer

Get an OpenID
or

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