Click here to Skip to main content
15,881,709 members
Articles / Programming Languages / C#

Vista Aero ToolStrip on Non-Client Area

Rate me:
Please Sign up or sign in to vote.
4.89/5 (61 votes)
8 Feb 2009CPOL2 min read 221.5K   13.3K   225   58
Place a ToolStrip on Aero's Glass non-client area
In this post, you will see a solution for giving the Ribbon an orb and the quick access toolbar.

NCBDemo

Introduction

When trying to figure out how to give the Ribbon an orb and the quick access toolbar, I found myself in trouble. I hope this example works for something you may need.

Background

Take a look to some Office app with a ribbon (Word, Excel, PowerPoint). There are some things that you might notice at first sight:

AeroNonClientAreaButtons/nonclient_002.jpg

  1. The orb is drawn half on the client area, half on the title bar.
  2. The quick access tools are drawn (and sensed) on the title bar.
  3. The title of the window is centered between the available space and the start of the caption buttons (minimize, maximize, close).

Using the Code

Although it seems like the orb and the tools are drawn on the non-client area, they are not. This trick is done with one of the features of Vista's Desktop Window Manager (DWM).

How? Well, a regular window has a client area and a non-client area:

AeroNonClientAreaButtons/nonclient_003.jpg

But, a form with the trick done has no client area at all:

AeroNonClientAreaButtons/nonclient_004.jpg

So, why does the form look like it has a client area? A very well known trick: DwmExtendFrameIntoClientArea.

Turns out that when extending the frame into the client area, caption buttons (minimize, maximize, close) are drawn by default. To give life to these caption buttons, the DwmDefWindowProc function is called.

C#
protected override void WndProc(ref Message m)
{
    ...

    int dwmHandled = Dwm.DwmDefWindowProc(m.HWnd, m.Msg, 
                         m.WParam, m.LParam, out result);

    if (dwmHandled == 1)
    {
        m.Result = result;
        return;
    }

    ... 

Now, we have to provide basic frame features like window moving and resizing. This is solved by handling the WM_NCHITTEST message on the WndProc. The return value for this message can specify which part of the frame the mouse is currently hitting. By a measurement of areas, the code returns the correct result:

  • Caption
  • North
  • South
  • East
  • West
  • NorthWest
  • NorthEast
  • SouthEast
  • SouthWest

Drawing the ToolStrip

To add a ToolStrip to the window, I just placed it as usual:

AeroNonClientAreaButtons/nonclient_005.jpg

and modified the render process so the ToolStrip gets no background:

C#
public class NonClientAreaRenderer
        : ToolStripProfessionalRenderer
{

    protected override void OnRenderToolStripBackground(ToolStripRenderEventArgs e)
    {
        if (e.ToolStrip.IsDropDown)
        {
            base.OnRenderToolStripBackground(e);
        }
        else
        {
            //Clear so Aero glass covers the area
            e.Graphics.Clear(Color.Transparent);
        }
    }
    ...

And, there you go. A nice toolbar just on the non-client area, but you know, it's not the non-client area. :)

History

  • 17th January, 2009 - Original post
  • 6th February, 2009 - Focus bug fixed

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Product Manager
United States United States
- I've been programming Windows and Web apps since 1997.
- My greatest concern nowadays is product, user interface, and usability.
- TypeScript / React expert

@geeksplainer

Comments and Discussions

 
GeneralRe: Glitching Pin
CalifBreton30-Jun-09 7:47
CalifBreton30-Jun-09 7:47 
GeneralRe: Glitching Pin
John Underhill28-Jan-10 1:23
John Underhill28-Jan-10 1:23 
GeneralYou need to get into WPF and Silverlight Pin
Sacha Barber17-Jan-09 21:54
Sacha Barber17-Jan-09 21:54 
GeneralRe: You need to get into WPF and Silverlight Pin
JoseMenendez18-Jan-09 3:41
JoseMenendez18-Jan-09 3:41 
GeneralRe: You need to get into WPF and Silverlight Pin
Sacha Barber18-Jan-09 4:32
Sacha Barber18-Jan-09 4:32 
Generallink not working Pin
ZGelic17-Jan-09 11:01
ZGelic17-Jan-09 11:01 
GeneralRe: link not working Pin
Mojoflys17-Jan-09 13:12
Mojoflys17-Jan-09 13:12 
AnswerSolved! Pin
JoseMenendez17-Jan-09 20:55
JoseMenendez17-Jan-09 20:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.