| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <UserControl x:Class="SummaryModule.Controls.Header_Progress"
- 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:SummaryModule.Controls"
- mc:Ignorable="d"
- x:Name="This"
- d:DesignHeight="450" d:DesignWidth="800">
- <UserControl.Resources>
- <ResourceDictionary >
- <ResourceDictionary.MergedDictionaries>
- <ResourceDictionary Source="/UICommon;component/Resources.xaml"/>
- </ResourceDictionary.MergedDictionaries>
- </ResourceDictionary>
- </UserControl.Resources>
- <Border BorderBrush="{StaticResource DarkBorderColor}" BorderThickness="0.5" CornerRadius="4">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*"/>
- <ColumnDefinition Width="2*"/>
- </Grid.ColumnDefinitions>
- <Border Background="#e6f4ff" CornerRadius="4,0,0,4">
- <TextBlock Foreground="{StaticResource ThemeColor}" FontSize="14" VerticalAlignment="Center" Margin="8,0,0,0" Text="{Binding ElementName=This, Path=Header}"/>
- </Border>
- <Border Grid.Column="1" BorderBrush="{StaticResource DarkBorderColor}" BorderThickness="0.5,0,0,0">
- <Grid>
- <ProgressBar Value="{Binding ElementName=This, Path=Value}" Maximum="{Binding ElementName=This, Path=Max}" Background="Transparent" BorderThickness="0" Foreground="{StaticResource NiceGreen}"/>
- <TextBlock FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" Panel.ZIndex="1">
- <Run Text="{Binding ElementName=This, Path=Value}"/>
- <Run> / </Run>
- <Run Text="{Binding ElementName=This, Path=Max}"/>
- </TextBlock>
- </Grid>
- </Border>
- </Grid>
- </Border>
- </UserControl>
|