| 123456789101112131415161718192021222324252627282930313233 |
- <Window x:Class="kursach_2._0.Windows.Confirmation"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:kursach_2._0.Windows"
- mc:Ignorable="d"
- Title="Подтверждение" Height="150" Width="250" ResizeMode="NoResize" WindowStartupLocation="CenterScreen">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Label Content="для действия введите пароль" Grid.Row="0"
- HorizontalAlignment="Center" VerticalAlignment="Bottom"
- FontFamily="Montserrat Light" />
- <PasswordBox Grid.Row="1" Margin="30, 7"
- HorizontalContentAlignment="Center" VerticalContentAlignment="Center" VerticalAlignment="Top"/>
-
- <Grid Grid.Row="2">
- <Grid.ColumnDefinitions>
- <ColumnDefinition/>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <Button Content="Отмена" Grid.Column="0" Margin="30, 6" FontFamily="Montserrat Medium" VerticalAlignment="Top" Click="CancelClick"/>
- <Button Content="Ок" Grid.Column="1" Margin="30, 6" FontFamily="Montserrat Medium" VerticalAlignment="Top" Click="OkClick"/>
- </Grid>
- </Grid>
- </Window>
|