// Based on Windows UI Library
// Copyright(c) Microsoft Corporation.All rights reserved.
// ReSharper disable once CheckNamespace
namespace WPFluent.Controls;
///
/// Defines constants that specify how and where the NavigationView pane is shown.
///
public enum NavigationViewPaneDisplayMode
{
///
/// The pane is shown on the left side of the control.
///
Left,
///
/// The pane is shown on the left side of the control. Only the pane icons are shown.
///
LeftMinimal,
///
/// The pane is shown on the left side of the control. Large icons with titles underneath are the only display
/// option. Does not support . Similar to the Windows Store (2022)
/// app.
///
LeftFluent,
///
/// The pane is shown at the top of the control.
///
Top,
///
/// The pane is shown at the bottom of the control.
///
Bottom,
}