Navigate.xaml 1.7 KB

12345678910111213141516171819202122232425262728293031
  1. <Window x:Class="OpenAndSaveDialogFile.Navigate"
  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:OpenAndSaveDialogFile"
  7. mc:Ignorable="d"
  8. Title="Navigate" Height="400" Width="400" WindowStartupLocation="CenterScreen">
  9. <Grid>
  10. <Border CornerRadius="20" Background="LightGray" Margin="15">
  11. <Border.Effect>
  12. <DropShadowEffect BlurRadius="10" ShadowDepth="0" Opacity="50"/>
  13. </Border.Effect>
  14. <Grid>
  15. <Grid.RowDefinitions>
  16. <RowDefinition Height="150*"/>
  17. <RowDefinition Height="130*"/>
  18. </Grid.RowDefinitions>
  19. <Border Grid.Row="0" HorizontalAlignment="Center" Background="GhostWhite" VerticalAlignment="Center" CornerRadius="20">
  20. <Border.Effect>
  21. <DropShadowEffect BlurRadius="5" ShadowDepth="0" Opacity="50"/>
  22. </Border.Effect>
  23. <TextBlock Text="Анкетирование" HorizontalAlignment="Center" TextWrapping="Wrap" Margin="30" FontSize="20"/>
  24. </Border>
  25. <StackPanel Grid.Row="1" HorizontalAlignment="Center" VerticalAlignment="Center" Width="230">
  26. <Button Content="Открыть" Click="btnNavigate_Click" Margin="5" Height="40" FontSize="20"/>
  27. </StackPanel>
  28. </Grid>
  29. </Border>
  30. </Grid>
  31. </Window>