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