Files
2025-11-11 11:03:42 +01:00

24 lines
995 B
XML

<Window x:Class="FasdDesktopUi.Pages.SplashScreenView.IntroView"
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:FasdDesktopUi.Pages.SplashScreenView"
mc:Ignorable="d"
Title="IntroView"
Height="450"
Width="800"
WindowState="Maximized"
WindowStyle="None"
Background="#426199"
PreviewKeyDown="Window_PreviewKeyDown"
IsVisibleChanged="Window_IsVisibleChanged">
<Grid>
<MediaElement x:Name="VideoPlayer"
x:FieldModifier="private"
Stretch="Fill"
MediaEnded="videoPlayer_MediaEnded"
LoadedBehavior="Manual"/>
</Grid>
</Window>