1
0
mirror of https://github.com/SirLecram/HospitalServerManager synced 2024-07-27 20:55:30 +02:00
admissionManager/obj/x86/Debug/View/MainFrameView.xaml

29 lines
1.7 KiB
Plaintext
Raw Normal View History

2018-11-18 18:49:40 +01:00
<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" IsOpen="True" IsSticky="True">
<AppBarButton x:ConnectionId='4' Icon="Street" Label="Sale" Tag="RoomsPage" />
<AppBarButton x:ConnectionId='5' Icon="Cut" Label="Operacje" Tag="SurgeriesPage" />
<AppBarButton x:ConnectionId='6' Icon="Paste" Label="Diagnozy" Tag="DiagnosesPage" />
2018-11-18 18:49:40 +01:00
<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>