AccExitWin.xaml 2.0 KB

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