12345678910111213141516 |
- <Page x:Class="ProjectCafe.Administrator"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:ProjectCafe"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="Administrator">
- <Grid>
- <Button Content="Пользователи" HorizontalAlignment="Left" Margin="91,59,0,0" VerticalAlignment="Top" Width="117" Click="ShowListEmployee_Click"/>
- <Button Content="Заказы" HorizontalAlignment="Left" Margin="244,59,0,0" VerticalAlignment="Top" Width="75" Click="ShowListOrder_Click"/>
- </Grid>
- </Page>
|