Splash.xaml 1.3 KB

123456789101112131415161718192021222324
  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.Background>
  14. <RadialGradientBrush>
  15. <GradientStop Color="#f8f8f8" Offset="1"/>
  16. <GradientStop Color="#ffffff"/>
  17. </RadialGradientBrush>
  18. </Window.Background>
  19. <Grid Name="splashGrid">
  20. <Image HorizontalAlignment="Left" VerticalAlignment="Top" Source="/MediaBrowser.Common;component/Resources/mblogo.png" Stretch="Uniform" Grid.Row="0" Margin="10 10 10 10"/>
  21. <ProgressBar Name="pbProgress" Minimum="0" Maximum="100" HorizontalAlignment="Left" Height="24" Margin="30,110,30,0" Width="460" Grid.Row="1"/>
  22. <Label Name="lblProgress" Content="Label" Margin="0,190,10,0" VerticalContentAlignment="Center" HorizontalAlignment="Center" Grid.Row="2"/>
  23. </Grid>
  24. </Controls:MetroWindow>