Files
marechai/Marechai.App/Presentation/Views/MainPage.xaml

55 lines
2.2 KiB
Plaintext
Raw Normal View History

2025-11-14 15:18:30 +00:00
<?xml version="1.0"
encoding="utf-8"?>
2025-11-15 02:46:54 +00:00
<Page x:Class="Marechai.App.Presentation.Views.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:utu="using:Uno.Toolkit.UI"
2025-11-14 20:59:12 +00:00
xmlns:uen="using:Uno.Extensions.Navigation.UI"
2025-11-15 02:46:54 +00:00
xmlns:components="clr-namespace:Marechai.App.Presentation.Components"
NavigationCacheMode="Required"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
2025-11-14 15:18:30 +00:00
<Grid utu:SafeArea.Insets="VisibleBounds">
2025-11-14 19:00:01 +00:00
<Grid.ColumnDefinitions>
<ColumnDefinition x:Name="SidebarColumn"
Width="280" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
2025-11-14 15:18:30 +00:00
<Grid.RowDefinitions>
<RowDefinition Height="Auto" /> <RowDefinition Height="*" />
</Grid.RowDefinitions>
2025-11-14 19:00:01 +00:00
<!-- Sidebar -->
<Grid x:Name="SidebarWrapper"
Grid.Row="0"
Grid.RowSpan="2"
Grid.Column="0"
Width="280"
HorizontalAlignment="Left">
2025-11-15 02:46:54 +00:00
<components:Sidebar x:Name="SidebarPanel"
DataContext="{Binding}"
VerticalAlignment="Stretch" />
2025-11-14 19:00:01 +00:00
</Grid>
2025-11-14 15:18:30 +00:00
<!-- Header -->
2025-11-14 19:00:01 +00:00
<utu:NavigationBar Grid.Row="0"
Grid.Column="1"
Content="{Binding Title}">
<utu:NavigationBar.MainCommand>
<AppBarButton Icon="GlobalNavigationButton"
Command="{Binding ToggleSidebarCommand}"
Label="Toggle Sidebar"
AutomationProperties.Name="Toggle sidebar visibility" />
</utu:NavigationBar.MainCommand>
</utu:NavigationBar>
2025-11-14 15:18:30 +00:00
2025-11-14 20:59:12 +00:00
<!-- Content Region for Navigation -->
<ContentControl Grid.Row="1"
Grid.Column="1"
HorizontalContentAlignment="Stretch"
VerticalContentAlignment="Stretch"
uen:Region.Attached="True"
uen:Region.Name="Main" />
</Grid>
2025-11-14 15:18:30 +00:00
</Page>