mui
mui copied to clipboard
Fixes to ModernDialog.xaml
-Hide Minimize, Maximize and Restore(shows up when WindowState is set to Maximized) when ResizeMode is NoResize, same as a normal window does
-Added fix for when WindowState is Maximized and ResizeMode is NoResize, when both were set before you could start dragging the window and it would snap to the size of MinWidth and MinHeight.
UpwindSpring01 the visual bug:

Style for window:
<Style x:Key="DialogWindow"
BasedOn="{StaticResource BlankWindow}"
TargetType="{x:Type mui:ModernWindow}">
<Setter Property="ResizeMode" Value="NoResize" />
</Style>
Conflict with BlankWindow.
Thanks for the report
Good job!