Splash.xaml 1.7 KB

1234567891011121314151617181920212223242526272829303132
  1. <Controls:MetroWindow x:Class="MediaBrowser.Common.UI.Splash"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:Controls="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro"
  5. Title="MediaBrowser"
  6. Height="280"
  7. Width="520"
  8. ShowInTaskbar="True"
  9. ResizeMode="NoResize"
  10. WindowStartupLocation="CenterScreen"
  11. WindowState="Normal"
  12. FontSize="14">
  13. <Window.Resources>
  14. <ResourceDictionary>
  15. <Style TargetType="{x:Type Controls:WindowCommands}">
  16. <Setter Property="Visibility" Value="Hidden" />
  17. </Style>
  18. </ResourceDictionary>
  19. </Window.Resources>
  20. <Window.Background>
  21. <RadialGradientBrush RadiusX=".75" RadiusY=".75">
  22. <GradientStop Color="White" Offset="0.0"/>
  23. <GradientStop Color="WhiteSmoke" Offset="0.65"/>
  24. <GradientStop Color="#cfcfcf" Offset="1.0"/>
  25. </RadialGradientBrush>
  26. </Window.Background>
  27. <Grid Name="splashGrid">
  28. <Image x:Name="imgLogo" HorizontalAlignment="Left" VerticalAlignment="Top" Stretch="Uniform" Grid.Row="0" Margin="10 10 10 10" Source="../Resources/Images/mblogoblack.png"/>
  29. <ProgressBar Name="pbProgress" Minimum="0" Maximum="100" HorizontalAlignment="Left" Height="24" Margin="30,110,30,0" Width="460" Grid.Row="1"/>
  30. <TextBlock Name="lblProgress" Margin="0,190,10,0" VerticalAlignment="Center" HorizontalAlignment="Center" Grid.Row="2" FontSize="18" Foreground="Black" Text="Label"></TextBlock>
  31. </Grid>
  32. </Controls:MetroWindow>