While you can always custom paint the windows title bar, in most cases it ends up being a very messy approach with possible side effects. What I do in WPF is to disable the title bar in the window by setting its WindowStyle to none. <Window x:Class=”…” xmlns=”http://schemas.microsoft.com/winfx/2006/xaml/presentation” xmlns:x=”http://schemas.microsoft.com/winfx/2006/xaml” … MinWidth=”700″ WindowStyle=”None” Icon=”…”> I then [...]
Entries from October 2007
WPF tip : Using a custom title bar
October 27th, 2007 · 3 Comments
Tags: WPF (Avalon)