We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Window
Microsoft.UI.Xaml.Window
IsMaximizable
Boolean
Helper for workaround setting IsMaximizable=false but you are still able to maximize the window but double-tapping on the title bar.
IsMaximizable=false
Simply delcare it under any Resource under a control that is inside a Window. Usage:
Resource
<Window ...> <StackPanel> <StackPanel.Resource> <essential:NonMaximizableWindowWorkaround Window="{x:Bind}"/> </StackPanel.Resource> </StackPanel> ... </Window>
There was an error while loading. Please reload this page.