Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
45
XamRibbon loses minimise / maximise, restore and close buttons when the window has a WindowStyle of "None".
posted

I'm trying to build a WPF application that has areas of transparency, so that whatever is underneath the application can be seen.

To do this, I have been setting the following settings in the Window's XAML:

WindowStyle="None"

AllowsTransparency="True"

Background="Transparent"

However, when I add a XamRibbon to the window, I am unable to get the minimise / maximise, restore and close buttons to show.

I am also unable to move or resize the application.

I've overcome moving by calling Window.DragMove() from the window's MouseLeftButtonDown event handler.

Any ideas?