Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Borderless window in WPF

I want to have Borderless window similar to image I have attached; how can I do this ?

Thanks Oceanenter image description here

like image 796
Ocean Avatar asked Mar 14 '11 19:03

Ocean


People also ask

How do I create a borderless window in WPF?

To make the window display without this gray border, you need to set the 'ResizeMode' property of the window to 'NoResize'.


1 Answers

You can get rid of the default chrome by making the window transparent and windowStyle to None, and need to provide styled buttons instead of the regular buttons on the top-right

<Window  WindowStyle="None" AllowsTransparency="True" Background="Transparent"
like image 51
Jobi Joy Avatar answered Oct 01 '22 16:10

Jobi Joy