mirror of
https://github.com/SirLecram/HospitalServerManager
synced 2024-11-09 04:55:27 +01:00
29 lines
1.6 KiB
XML
29 lines
1.6 KiB
XML
<Page
|
|
x:Class="HospitalServerManager.View.MainFrameView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:HospitalServerManager.View"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d"
|
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
|
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="70"/>
|
|
<RowDefinition/>
|
|
</Grid.RowDefinitions>
|
|
<CommandBar x:ConnectionId='2' FlowDirection="LeftToRight" VerticalAlignment="Top" Style="{StaticResource CommandBarRevealStyle}"
|
|
Name="navigationBar" Grid.Row="0">
|
|
<AppBarButton x:ConnectionId='4' Icon="Street" Label="Sale" Tag="6" />
|
|
<AppBarButton x:ConnectionId='5' Icon="Cut" Label="Operacje" Tag="5" />
|
|
<AppBarButton x:ConnectionId='6' Icon="Paste" Label="Diagnozy" Tag="4" />
|
|
<AppBarButton x:ConnectionId='7' Icon="WebCam" Label="Pracownicy" Tag="DoctorsPage" />
|
|
<AppBarButton x:ConnectionId='8' Icon="People" Label="Pacjenci" Tag="PatientsPage" />
|
|
<AppBarButton x:ConnectionId='9' Icon="AddFriend" Label="Przyjęcia" Tag="AdmissionsPage" />
|
|
</CommandBar>
|
|
<Frame x:ConnectionId='3' Name="mainFrame" Grid.Row="1" Margin="5"/>
|
|
</Grid>
|
|
</Page>
|
|
|