EnabledCashierWindow.xaml 1.4 KB

12345678910111213141516171819202122
  1. <Window x:Class="Cashier.EnabledCashierWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:Cashier"
  7. mc:Ignorable="d"
  8. Title="Разблокировать" Height="450" Width="800" MaxWidth="800" MaxHeight="450" WindowStartupLocation="CenterScreen" MinHeight="450" MinWidth="800">
  9. <Grid>
  10. <Grid.ColumnDefinitions>
  11. <ColumnDefinition/>
  12. <ColumnDefinition/>
  13. </Grid.ColumnDefinitions>
  14. <Grid.RowDefinitions>
  15. <RowDefinition/>
  16. <RowDefinition/>
  17. </Grid.RowDefinitions>
  18. <TextBlock Text="Введите код сотрудника" HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="5"></TextBlock>
  19. <TextBox Grid.Column="1" Name="TxtNumberEmployee" VerticalAlignment="Bottom" Height="30" Margin="5,0,200,5" VerticalContentAlignment="Center" Padding="5,0,0,0"></TextBox>
  20. <Button Grid.Row="1" Name="BtnEnabledCashier" Click="BtnEnabledCashier_Click" Grid.ColumnSpan="2" VerticalAlignment="Top" Height="30" Margin="300,20,300,20">Разблокировать</Button>
  21. </Grid>
  22. </Window>