22 lines
902 B
XML
22 lines
902 B
XML
<Window x:Class="F4SD_Cockpit_Client_Intro.IntroWindow"
|
|
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:F4SD_Cockpit_Client_Intro"
|
|
mc:Ignorable="d"
|
|
Title="First Aid Service Desk"
|
|
d:Height="450"
|
|
d:Width="800"
|
|
WindowState="Maximized"
|
|
WindowStyle="None"
|
|
Background="#426199"
|
|
PreviewKeyDown="Window_PreviewKeyDown">
|
|
<Grid>
|
|
<MediaElement x:Name="videoPlayer"
|
|
Stretch="Fill"
|
|
Source="Resources/F4SD Intro.mov"
|
|
MediaEnded="videoPlayer_MediaEnded" />
|
|
</Grid>
|
|
</Window>
|