StartWorkPage.xaml 1.2 KB

1234567891011121314151617181920212223
  1. <Page x:Class="StoreServer.StartWorkPage"
  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:StoreServer"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="Начало работы">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition/>
  13. <RowDefinition/>
  14. </Grid.RowDefinitions>
  15. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Bottom">
  16. <TextBlock Margin="0,0,20,0">Введите ID магазина:</TextBlock>
  17. <TextBox Width="80" Name="TxtIDStore" Margin="0,0,20,0"></TextBox>
  18. <Button x:Name="BtnFind" Content="Начать" Width="200" Click="BtnFind_Click"></Button>
  19. </StackPanel>
  20. <Button x:Name="BtnOfflineWork" Click="BtnOfflineWork_Click" Content="Работать оффлайн" Grid.Row="1" HorizontalAlignment="Center" VerticalAlignment="Top" Margin="60" Height="40" Width="200"></Button>
  21. </Grid>
  22. </Page>