MenuCustomer.xaml 1.5 KB

123456789101112131415161718192021222324252627
  1. <Page x:Class="PR13Kudro.Pages.MenuCustomer"
  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:PR13Kudro.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="MenuCustomer">
  10. <Grid Background="White">
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="22*"/>
  13. <RowDefinition Height="37*"/>
  14. <RowDefinition Height="31*"/>
  15. </Grid.RowDefinitions>
  16. <Grid.ColumnDefinitions>
  17. <ColumnDefinition Width="37*"/>
  18. <ColumnDefinition Width="319*"/>
  19. <ColumnDefinition Width="44*"/>
  20. </Grid.ColumnDefinitions>
  21. <Button Content="Переход 1" Grid.Column="1" HorizontalAlignment="Left" Margin="10,10,0,0" Grid.Row="1" VerticalAlignment="Top" Width="618" Height="34" Click="Button_Click"/>
  22. <Button Content="Переход 2" Grid.Column="1" HorizontalAlignment="Left" Margin="10,49,0,0" Grid.Row="1" VerticalAlignment="Top" Width="618" Height="34" Click="Button_Click_1"/>
  23. <Button Content="Переход 3" Grid.Column="1" HorizontalAlignment="Left" Margin="10,88,0,0" Grid.Row="1" VerticalAlignment="Top" Width="618" Height="34" Click="Button_Click_2"/>
  24. </Grid>
  25. </Page>