MainWindow.xaml 1.3 KB

12345678910111213141516171819202122232425262728293031
  1. <Window
  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:local="clr-namespace:Bellwether"
  6. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  7. Title="MainWindow"
  8. Width="5760"
  9. Height="1080"
  10. d:DesignHeight="1080"
  11. d:DesignWidth="5760"
  12. ResizeMode="NoResize"
  13. Stylus.IsPressAndHoldEnabled="False"
  14. WindowStartupLocation="CenterScreen"
  15. WindowStyle="None"
  16. mc:Ignorable="d"
  17. x:Class="Bellwether.MainWindow">
  18. <Window.Resources>
  19. <Storyboard x:Key="HideStoryboard">
  20. <DoubleAnimationUsingKeyFrames Storyboard.TargetName="uxMainGrid" Storyboard.TargetProperty="(UIElement.Opacity)">
  21. <EasingDoubleKeyFrame KeyTime="0:0:0.5" Value="0" />
  22. </DoubleAnimationUsingKeyFrames>
  23. </Storyboard>
  24. <Storyboard x:Key="ShowStoryboard">
  25. <DoubleAnimationUsingKeyFrames Storyboard.TargetName="uxMainGrid" Storyboard.TargetProperty="(UIElement.Opacity)">
  26. <EasingDoubleKeyFrame KeyTime="0:0:0.5" Value="1" />
  27. </DoubleAnimationUsingKeyFrames>
  28. </Storyboard>
  29. </Window.Resources>
  30. <Grid x:Name="uxMainGrid" />
  31. </Window>