Confirmation.xaml 1.6 KB

123456789101112131415161718192021222324252627282930313233
  1. <Window x:Class="kursach_2._0.Windows.Confirmation"
  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:kursach_2._0.Windows"
  7. mc:Ignorable="d"
  8. Title="Подтверждение" Height="150" Width="250" ResizeMode="NoResize" WindowStartupLocation="CenterScreen">
  9. <Grid>
  10. <Grid.RowDefinitions>
  11. <RowDefinition/>
  12. <RowDefinition/>
  13. <RowDefinition/>
  14. </Grid.RowDefinitions>
  15. <Label Content="для действия введите пароль" Grid.Row="0"
  16. HorizontalAlignment="Center" VerticalAlignment="Bottom"
  17. FontFamily="Montserrat Light" />
  18. <PasswordBox Grid.Row="1" Margin="30, 7"
  19. HorizontalContentAlignment="Center" VerticalContentAlignment="Center" VerticalAlignment="Top"/>
  20. <Grid Grid.Row="2">
  21. <Grid.ColumnDefinitions>
  22. <ColumnDefinition/>
  23. <ColumnDefinition/>
  24. </Grid.ColumnDefinitions>
  25. <Button Content="Отмена" Grid.Column="0" Margin="30, 6" FontFamily="Montserrat Medium" VerticalAlignment="Top" Click="CancelClick"/>
  26. <Button Content="Ок" Grid.Column="1" Margin="30, 6" FontFamily="Montserrat Medium" VerticalAlignment="Top" Click="OkClick"/>
  27. </Grid>
  28. </Grid>
  29. </Window>