|
<syncfusion:SfNavigationDrawer x:Name="navigationDrawer" DrawerWidth="300">
<syncfusion:SfNavigationDrawer.ContentView>
<Grid x:Name="mainContentView"
Background="DarkBlue">
<Grid.RowDefinitions>
<RowDefinition Height="auto"/>
<RowDefinition/>
</Grid.RowDefinitions>
<StackPanel
Orientation="Horizontal">
<Button x:Name="hamburgerButton" Content="Menu"
Height="50" Width="50" Foreground="White"
Background="DarkBlue"
HorizontalAlignment="Left"
Click="HamburgerButton_Click">
</Button>
<Label x:Name="headerLabel"
Height="50"
Content="Home" Foreground="White"
Background="DarkBlue"/>
</StackPanel>
<Label Grid.Row="1"
x:Name="contentLabel" HorizontalAlignment="Center" VerticalAlignment="Center"
Content="Content View"
Foreground="White"/>
</Grid>
</syncfusion:SfNavigationDrawer.ContentView>
…
</syncfusion:SfNavigationDrawer>
|