StartWorkPage.xaml 1.1 KB

123456789101112131415161718192021222324252627
  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.ColumnDefinitions>
  12. <ColumnDefinition/>
  13. <ColumnDefinition/>
  14. </Grid.ColumnDefinitions>
  15. <Grid.RowDefinitions>
  16. <RowDefinition/>
  17. <RowDefinition/>
  18. </Grid.RowDefinitions>
  19. <TextBlock Margin="5" HorizontalAlignment="Right" VerticalAlignment="Bottom">ID магазина:</TextBlock>
  20. <Button Grid.Row="1" Grid.ColumnSpan="2" Height="30" x:Name="BtnFind" Content="Начать" Margin="300,20,300,0" VerticalAlignment="Top" Click="BtnFind_Click"></Button>
  21. <TextBox Grid.Column="1" Name="TxtIDStore" VerticalAlignment="Bottom" Margin="7,0,250,7"/>
  22. </Grid>
  23. </Page>