How can I make a Borderless window in WPF winforms application?
How can I make a Borderless window in WPF winforms application?
Hi experts!
How can I make a Borderless window in WPF winforms application?
Other
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"></Window>