Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WPF: Custom window, standard min/max/close buttons

I would like to create a custom WPF window (WindowStyle = None, AllowsTransparency = True). However, I would like the min/max/close buttons to look identical to those on standard windows. Is this possible?

like image 628
anthony Avatar asked Feb 28 '11 21:02

anthony


1 Answers

You might want to have a look at GlassWindow in FluidKit at CodePlex
http://fluidkit.codeplex.com/

The source code has a custom Window Style looking like this. It's pretty easy to modify to however you want it to look. I've used it once and it works good

enter image description here

like image 199
Fredrik Hedblad Avatar answered Oct 03 '22 06:10

Fredrik Hedblad