Click here to Skip to main content
Licence LGPL3
First Posted 12 Sep 2010
Views 12,650
Downloads 0
Bookmarked 8 times

WPF Aero Titlebar

By | 12 Sep 2010 | Technical Blog
Titlebar in Aero theme
A Technical Blog article. View original blog here.[^]

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 Chome), 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
<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 if 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.

License

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

About the Author

Leung Yat Chun

Software Developer

Hong Kong Hong Kong

Member

DirectoryInfoEx - 0.22
 
WPF FileExplorer - 0.8
 
WPF ListView MultiSelect - 0.4
 
WPF Aero Titlebar - 0.2

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 4 PinmemberLe Duc Anh2:11 15 Oct '10  
GeneralRe: My vote of 4 PinmemberLeung Yat Chun4:45 15 Oct '10  
GeneralMicrosoft's WindowChrome class Pinmemberkiol10:04 13 Sep '10  
GeneralRe: Microsoft's WindowChrome class [modified] PinmemberLeung Yat Chun21:27 13 Sep '10  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 12 Sep 2010
Article Copyright 2010 by Leung Yat Chun
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid