Files
VMwareLauncher/VmwareLauncher/StatusWindow.xaml
Dunestorm 9d7bfbe6b9 [VMware Launcher 2.0.9.6]
- Enhancement: #3 Update Splash Screen
2021-03-27 15:20:21 +00:00

19 lines
1.1 KiB
XML

<Window x:Class="VMwareLauncher.StatusWindow"
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:VMwareLauncher"
mc:Ignorable="d"
Title="VMware Launcher 2.1" Height="202.5" Width="500" Loaded="Window_Loaded" ResizeMode="NoResize" Closing="Window_Closing" Icon="Resources/VMwareLauncher.ico">
<Grid>
<Grid.Background>
<ImageBrush ImageSource="Resources/VMware-Logo.jpg" Stretch="UniformToFill"/>
</Grid.Background>
<ProgressBar x:Name="progLoading" IsIndeterminate="True" Margin="45,0,10,5" Height="14" VerticalAlignment="Bottom"/>
<Label x:Name="labelStatus" Content="Starting VMware Workstation Services..." Margin="40,0,-40,14" Foreground="{DynamicResource {x:Static SystemColors.ControlDarkDarkBrushKey}}" FontFamily="Calibri" Height="26" VerticalAlignment="Bottom" HorizontalAlignment="Left" Width="494"/>
</Grid>
</Window>