New to Telerik UI for .NET MAUI? Start a free 30-day trial

Configure the .NET MAUI SideDrawer

This article explains all configuration options that the SideDrawer control provides.

Content

Use the folloing properties to define content of the SideDrawer control:

  • DrawerContent(View)—Specifies the drawer (initially hidden) content.
  • MainContent(View)—Specifies the (initially visible) content of the component.

Drawer behavior

  • IsOpen(bool)—Specifies a value indicating if the drawer content is visible.
  • DrawerLength(double)—Defines how much the drawer content should be extended over the main content in opened position.
  • DrawerLocation(SideDrawerLocation)—Specifies the location from which the drawer will be opened. The following options are available:

    • Left
    • Right
    • Top
    • Bottom
  • AreGesturesEnabled(bool)—This is a mobile exclusive property which specifies ability for gestures to open and close the drawer.

  • TouchTargetThreshold(double)—Defines the touchable area (number of pixels from the screen edges) that will allow to open the DrawerContent.

Keep Drawer open and main content area active

By default the SideDrawer Drawer Content closes when user clicks/taps outside of it. By setting the TapOutsideToClose(bool) to false, the drawer content remains open if the user taps/clicks outside of it and the main content area remains active. The default value of TapOutsideToClose is true.

SideDrawer Main Content Area active Started

A sample Location example can be found in the SideDrawer/Features folder of the SDK Samples Browser application.

See Also

In this article
Not finding the help you need?