1234567891011121314151617181920212223242526272829303132 |
- <Window x:Class="ROGOZ.Windows.AccExitWin"
- 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:ROGOZ.Windows"
- mc:Ignorable="d"
- Title="AccExitWin" Height="310" Width="600"
- WindowStyle="None"
- WindowStartupLocation="CenterScreen"
- ResizeMode="NoResize"
- MouseDown="Window_MouseDown"
- Background="Transparent"
- AllowsTransparency="True">
- <Border CornerRadius="15" Background="#e6f4ff">
- <Grid>
- <Label Content="Выйти" Style="{StaticResource LabelStyle}" FontSize="35" Margin="10,10,0,0" Height="55" Width="120" HorizontalAlignment="Left" VerticalAlignment="Top"/>
- <Button x:Name="btnClose" Style="{DynamicResource PanelButtonX}" Margin="0,10,10,0" Height="30" Width="30" Click="btnClose_Click" >
- <Image Source="/Resources/Cross1.png" IsHitTestVisible="False"/>
- </Button>
- <TextBlock Text="Вы собираетесь выйти из аккаунта ESOFT. Вам потребуется заново ввести ваши логин и пароль, чтобы снова войти в ESOFT" Style="{StaticResource Text_Style}" TextWrapping="Wrap" Foreground="Black" FontSize="25" Margin="15,0,15,0" />
- <StackPanel VerticalAlignment="Bottom" Margin="10" Orientation="Horizontal" HorizontalAlignment="Right" Width="450">
- <Button Content="Подтвердить" Style="{StaticResource AuthoButtons}" Width="200" FontSize="25" BorderThickness="0" Margin="0,0,30,0" Click="Button_Click_1"/>
- <Button Content="Отмена" Style="{StaticResource AuthoButtons}" Width="200" FontSize="25" Background="Gray" BorderThickness="0" Click="Button_Click"/>
- </StackPanel>
- </Grid>
- </Border>
-
- </Window>
|