Loading.xaml 1.7 KB

1234567891011121314151617181920212223242526272829303132
  1. <UserControl x:Class="HistoryView.Views.Loading"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:HistoryView.Views"
  7. mc:Ignorable="d"
  8. xmlns:prism="http://prismlibrary.com/"
  9. prism:ViewModelLocator.AutoWireViewModel="True"
  10. Width="700" Height="150">
  11. <Grid Background="White">
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="auto"/>
  14. <RowDefinition Height="0"/>
  15. <RowDefinition />
  16. <RowDefinition Height="16"/>
  17. <RowDefinition Height="auto"/>
  18. <RowDefinition Height="8"/>
  19. <RowDefinition Height="auto"/>
  20. <RowDefinition Height="8"/>
  21. </Grid.RowDefinitions>
  22. <Image Source="pack://application:,,,/Resources/jetplasmalogo.png" Height="20" HorizontalAlignment="Left" Margin="0,16" Panel.ZIndex="1"/>
  23. <Image Grid.RowSpan="8" Opacity="0.5" Stretch="UniformToFill" VerticalAlignment="Bottom" Source="pack://application:,,,/Resources/BackGround.png"/>
  24. <!--<Label FontSize="18" Margin="5" HorizontalAlignment="Center">Title</Label>-->
  25. <ProgressBar Grid.Row="4" Margin="10,0" Height="12" Style="{StaticResource ThemeProgressBar}" Value="{Binding ProgressValue}"/>
  26. <TextBlock Grid.Row="6" Margin="10,0" Foreground="White" Background="#70000000" HorizontalAlignment="Left" Text="{Binding Hint}"/>
  27. </Grid>
  28. </UserControl>