Click here to Skip to main content
15,884,176 members
Articles / Desktop Programming / WPF

WPF Aero Titlebar

Rate me:
Please Sign up or sign in to vote.
3.00/5 (5 votes)
12 Sep 2010LGPL32 min read 73.2K   10   6
Titlebar in Aero theme

Introduction

This article features a Title bar component in Aero theme.

Custom title bar is not something new. There are many implementations around, but most of them are trying to create a new theme instead of extend an existing one.

The major reason for developing this instead of using an existing one is that you cannot place any WPF control on the title bar, so if you want to place a TabControl there (like Google Chrome), you are out of luck.

It supports the following:

  • Emulates the behavior as much as possible, like:
    • Aero like glowing button
    • Transparent when the window is not active
    • Double-click the titlebar will restore/maximize the window
    • 8-way resize grip, which disappears when there is a full screen
  • Custom title contents

How to Use?

The control has two properties:

  • Title – which holds the title content
  • Content – which holds the client area
XML
<uc:TitlebarContainer Background="Transparent" Margin="0" >
    <uc:TitlebarContainer.Title>
        <StackPanel Orientation="Horizontal">
            <TextBlock Text="[=_=]"  />
            <TextBlock Text="TITLE" Margin="5,0" />
        </StackPanel>
    </uc:TitlebarContainer.Title>
    <TextBlock Text="A Quick Fox Jump Over The Lazy Dog" />
</uc:TitlebarContainer>

The Internal Design

The component is very simple, it contains TitlebarContainer, Titlebar and TitlebarControlButton(s).

TitlebarContainer represents an implementation of Titlebar, it contains the Titlebar control, as well as the Resize Grips, the implementation of Resize Grips is based on Kirupa’s code, which uses some WINAPIs.

Titlebar represent the top part of the titlebar, it contains the actual Title contents (via the Content property), as well as four TitlebarControlButtons (Minimize, Maximize, Restore and Close). If you have some custom implementations, you may want to use this control instead of TitlebarContainer.

TitlebarControlButton represent the buttons, these buttons glow when mouse over, the button actually glows outwards. I used DropShadowEffect instead of OuterGlowBitmapEffect because it’s obsoleted in .NET 4.0.

The path of the buttons are drawn using Expression Blend, not from bitmap. Using Blend reduces my work a lot. I am new to Expression Blend, here’s what I did:

  • Capture a picture of the button, paste it on the canvas
  • Group it into a grid (Group Into \ Grid)
  • Draw with rectangle or pen using pasted graph as base
  • To avoid it from using the margin property, draw a rectangle on the edge of the button graphic
  • Combine them and convert it into path (Path \ Make CompoundPath)
  • Copy the path value and removed the unneeded rectangle

References

This article has been posted on . You can find a list of my articles here.

This article was originally posted at http://quickzip.org/news/2010/09/wpf-aero-titlebar

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Founder
Hong Kong Hong Kong

Comments and Discussions

 
QuestionDownload not possible, target is down - Error 404 Pin
Axel Steiner27-Aug-21 16:38
Axel Steiner27-Aug-21 16:38 
BugLinks do not work Pin
VEMS26-Mar-19 15:41
VEMS26-Mar-19 15:41 
GeneralMy vote of 4 Pin
Le Duc Anh15-Oct-10 2:11
professionalLe Duc Anh15-Oct-10 2:11 
GeneralRe: My vote of 4 Pin
Leung Yat Chun15-Oct-10 4:45
Leung Yat Chun15-Oct-10 4:45 
GeneralMicrosoft's WindowChrome class Pin
kiol13-Sep-10 10:04
kiol13-Sep-10 10:04 
GeneralRe: Microsoft's WindowChrome class [modified] Pin
Leung Yat Chun13-Sep-10 21:27
Leung Yat Chun13-Sep-10 21:27 
Greetings

Thanks for your info, I have just checked and see if it's easier to use that one instead, but I cant get the WindowChrome class to work on Windows XP, and it seems doesnt work on Windows Vista as well, as it says Windows 7 required.

This is what I got


Thanks for your information.

Regards
Joseph Leung

-----------------------------
I have found and fixed a couple bugs in my component.
1. Crash related to GradiantStopCollection in LinearGradientBrush, when switch to .Net 3.5 framework.
2. The screen overlap the task bar when maximize.
3. No animation when Minimize window

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.