ConsumerСreation.xaml 1.5 KB

12345678910111213141516171819202122232425262728293031
  1. <Page x:Class="Logistics_application.ConsumerСreation"
  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:Logistics_application"
  7. mc:Ignorable="d"
  8. d:DesignHeight="400" d:DesignWidth="600"
  9. Title="ConsumerСreation">
  10. <Grid Height="390" VerticalAlignment="Top" Margin="0,10,0,0">
  11. <Grid.ColumnDefinitions>
  12. <ColumnDefinition Width="300"/>
  13. <ColumnDefinition Width="300"/>
  14. </Grid.ColumnDefinitions>
  15. <Grid.RowDefinitions>
  16. <RowDefinition Height="45"/>
  17. <RowDefinition/>
  18. <RowDefinition/>
  19. <RowDefinition Height="45"/>
  20. </Grid.RowDefinitions>
  21. <Button Content="Список отправителей" HorizontalAlignment="Left" Margin="10,107,0,0" Grid.Row="1" VerticalAlignment="Top" Width="280" Height="79" Grid.RowSpan="2" Click="SenderList_Click"/>
  22. <Button Content="Список получателей" HorizontalAlignment="Left" Margin="10,107,0,0" Grid.Row="1" Grid.Column="1" VerticalAlignment="Top" Width="280" Height="79" Grid.RowSpan="2" Click="AddresseeList_Click"/>
  23. <Frame NavigationUIVisibility="Hidden" Grid.Row="1" Name="MainFrame" Grid.RowSpan="2"/>
  24. </Grid>
  25. </Page>