AdminPage.xaml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <Page x:Class="Hotel_Course_Project.AdminPage"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:Hotel_Course_Project"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="Страница администратора" Loaded="Page_Loaded">
  10. <Grid>
  11. <TabControl>
  12. <TabItem Header="Персонал">
  13. <Grid>
  14. <Grid.RowDefinitions>
  15. <RowDefinition Height="40"></RowDefinition>
  16. <RowDefinition></RowDefinition>
  17. </Grid.RowDefinitions>
  18. <Grid.ColumnDefinitions>
  19. <ColumnDefinition Width="100"></ColumnDefinition>
  20. <ColumnDefinition></ColumnDefinition>
  21. <ColumnDefinition></ColumnDefinition>
  22. </Grid.ColumnDefinitions>
  23. <Button x:Name="AddStaffBtn" Click="AddStaffBtn_Click">Добавить</Button>
  24. <DataGrid x:Name="StaffList"></DataGrid>
  25. </Grid>
  26. </TabItem>
  27. <TabItem Header="Клиенты"></TabItem>
  28. <TabItem Header="Комнаты"></TabItem>
  29. <TabItem Header="История Платежей"></TabItem>
  30. <TabItem Header="Прочее"></TabItem>
  31. </TabControl>
  32. </Grid>
  33. </Page>