12345678910111213141516171819202122 |
- <Window x:Class="AIRS.LogoWindow"
- 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:shell="clr-namespace:Microsoft.Windows.Shell;assembly=Microsoft.Windows.Shell"
- xmlns:local="clr-namespace:AIRS"
- mc:Ignorable="d"
- Title="LogoWindow" Height="350" Width="500" WindowStartupLocation="CenterScreen" Background="#00000000" WindowStyle="None" AllowsTransparency="True" >
- <Window.Triggers>
- <EventTrigger RoutedEvent="Loaded">
- <BeginStoryboard>
- <Storyboard >
- <DoubleAnimation Duration="0:0:1.8" Storyboard.TargetProperty="Opacity" From="0" To="1" />
- </Storyboard>
- </BeginStoryboard>
- </EventTrigger>
- </Window.Triggers>
- <Grid>
- <Image x:Name="logo" Source="img/logo3.png"/>
- </Grid>
- </Window>
|