NavigationView.ExpandedModeThresholdWidth Property

Definition

Gets or sets the minimum window width at which the NavigationView enters Expanded display mode.

Equivalent WinUI 2 API for UWP: Microsoft.UI.Xaml.Controls.NavigationView.ExpandedModeThresholdWidth (for WinUI in the Windows App SDK, see the Windows App SDK namespaces).

public:
 property double ExpandedModeThresholdWidth { double get(); void set(double value); };
double ExpandedModeThresholdWidth();

void ExpandedModeThresholdWidth(double value);
public double ExpandedModeThresholdWidth { get; set; }
var double = navigationView.expandedModeThresholdWidth;
navigationView.expandedModeThresholdWidth = double;
Public Property ExpandedModeThresholdWidth As Double
<NavigationView ExpandedModeThresholdWidth="double" .../>

Property Value

Double

double

The minimum window width at which the NavigationView enters Expanded display mode. The default is 1008 pixels.

Applies to