StartWorkPage.xaml 1.7 KB

1234567891011121314151617181920212223242526272829303132
  1. <Page x:Class="Cashier.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:Cashier"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="Начало работы">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="3*"/>
  13. <RowDefinition/>
  14. <RowDefinition/>
  15. <RowDefinition/>
  16. <RowDefinition/>
  17. <RowDefinition Height="3*"/>
  18. </Grid.RowDefinitions>
  19. <Grid.ColumnDefinitions>
  20. <ColumnDefinition/>
  21. <ColumnDefinition/>
  22. </Grid.ColumnDefinitions>
  23. <TextBlock HorizontalAlignment="Right" Grid.Row="1" VerticalAlignment="Center" Margin="5">ID магазина</TextBlock>
  24. <TextBox Grid.Row="1" Grid.Column="1" x:Name="TxtIDStore" Margin="7,5,300,5"/>
  25. <TextBlock HorizontalAlignment="Right" Grid.Row="2" VerticalAlignment="Center" Margin="5">Номер кассы</TextBlock>
  26. <TextBox Grid.Row="2" Grid.Column="1" x:Name="TxtNumberCashier" Margin="7,5,300,5"/>
  27. <TextBlock HorizontalAlignment="Right" Grid.Row="3" VerticalAlignment="Center" Margin="5">Код сотрудника</TextBlock>
  28. <TextBox Grid.Row="3" Grid.Column="1" x:Name="TxtCodeEmployee" Margin="7,5,300,5"/>
  29. <Button Grid.Row="4" Grid.ColumnSpan="2" Height="30" Margin="300,0,300,0" Name="BtnConnect" Click="BtnConnect_Click">Начать</Button>
  30. </Grid>
  31. </Page>