void Nish(char* szBlog);

Nish’s thoughts on MFC, C++/CLI and .NET

void Nish(char* szBlog); header image 4

Entries from October 2007

WPF tip : Using a custom title bar

October 27th, 2007 · 3 Comments

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 [...]

[Read more →]

Tags: WPF (Avalon)