TitleBarButtonAvailability Enum
Defines the availability of the title bar controls buttons.
Definition
- Namespace: iNKORE.UI.WPF.Modern.Controls.Primitives
- Assembly: iNKORE.UI.WPF.Modern.dll
public enum TitleBarButtonAvailability {...}
Inheritance: Object → ValueType → Enum → TitleBarButtonAvailability
Fields
Auto
Let the system decide the availability of the button, which is the default value. The system will decide whether to show the button based on WindowStyle and ResizeMode property.
Value: 0
Collapsed
The button is hidden and disabled, there will be no space reserved for the button.
Value: 1
Disabled
The button is disabled but visible. You can still see the button but cannot interact with it.
Value: 2
Enabled
The button is enabled and visible. You can see and interact with the button.
Value: 3