NavigationView.IsPaneToggleButtonVisible Property

Definition

Gets or sets a value that indicates whether the menu toggle button is shown.

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

public:
 property bool IsPaneToggleButtonVisible { bool get(); void set(bool value); };
bool IsPaneToggleButtonVisible();

void IsPaneToggleButtonVisible(bool value);
public bool IsPaneToggleButtonVisible { get; set; }
var boolean = navigationView.isPaneToggleButtonVisible;
navigationView.isPaneToggleButtonVisible = boolean;
Public Property IsPaneToggleButtonVisible As Boolean
<NavigationView IsPaneToggleButtonVisible="bool" .../>

Property Value

Boolean

bool

true if the menu button is shown; otherwise, false. The default is true.

Applies to