12345678910111213141516171819202122232425262728293031 |
- <Page x:Class="Logistics_application.ConsumerСreation"
- 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:Logistics_application"
- mc:Ignorable="d"
- d:DesignHeight="400" d:DesignWidth="600"
- Title="ConsumerСreation">
- <Grid Height="390" VerticalAlignment="Top" Margin="0,10,0,0">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="300"/>
- <ColumnDefinition Width="300"/>
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="45"/>
- <RowDefinition/>
- <RowDefinition/>
- <RowDefinition Height="45"/>
- </Grid.RowDefinitions>
- <Button Content="Список отправителей" HorizontalAlignment="Left" Margin="10,107,0,0" Grid.Row="1" VerticalAlignment="Top" Width="280" Height="79" Grid.RowSpan="2" Click="SenderList_Click"/>
- <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"/>
- <Frame NavigationUIVisibility="Hidden" Grid.Row="1" Name="MainFrame" Grid.RowSpan="2"/>
- </Grid>
- </Page>
|