CustomerMenu.xaml 1.3 KB

12345678910111213141516171819202122
  1. <Page x:Class="savelev_avtor.Pages.CustomerMenu"
  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:savelev_avtor.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="CustomerMenu">
  10. <Grid Background="White">
  11. <Grid.ColumnDefinitions>
  12. <ColumnDefinition Width="289*"/>
  13. <ColumnDefinition Width="203*"/>
  14. <ColumnDefinition Width="308*"/>
  15. </Grid.ColumnDefinitions>
  16. <Button Content="Переход1" HorizontalAlignment="Left" Margin="0,141,0,0" VerticalAlignment="Top" Width="203" Grid.Column="1" Height="20" Click="ButtonPage1_OnClick"/>
  17. <Button Content="Переход2" HorizontalAlignment="Left" Margin="0,166,0,0" VerticalAlignment="Top" Width="203" Grid.Column="1" Height="20" Click="ButtonPage2_OnClick"/>
  18. <Button Content="Переход3" HorizontalAlignment="Left" Margin="0,191,0,0" VerticalAlignment="Top" Width="203" Grid.Column="1" Height="20" Click="ButtonPage3_OnClick"/>
  19. </Grid>
  20. </Page>