Enum TitleBarDisplayMode
Specifies the display mode for the title bar in a Blazor-based window, providing options for native, embedded, or hidden configurations.
Namespace: PoeShared.Blazor.Wpf
Assembly: PoeShared.Blazor.Wpf.dll
Syntax
public enum TitleBarDisplayMode
Fields
Name | Description |
---|---|
Custom | Renders a custom title bar within the Blazor environment. This mode offers maximum flexibility for customization, allowing you to design and control the title bar’s appearance and functionality within the Blazor UI. |
Default | Uses the default title bar mode, which relies on the operating system's native title bar. This is the standard setting that maximizes compatibility with the OS. |
None | Hides the title bar entirely, creating a frameless window with no visible title bar or controls. This mode can be used for immersive experiences or for windows that require full customization. |
System | Displays the native operating system title bar, providing a familiar look and feel with standard window controls such as close, minimize, and maximize. |