| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <UserControl x:Class="SummaryModule.Controls.ValueBar"
- 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 >
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="4"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock HorizontalAlignment="Left" VerticalAlignment="Center" >
- <Run>-</Run>
- <Run Text="{Binding ElementName=This, Path=MaxValue, StringFormat=0.0}"></Run>
- </TextBlock>
- <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Text="{Binding ElementName=This, Path=Value, StringFormat=0;0}"/>
- <TextBlock HorizontalAlignment="Right" VerticalAlignment="Center" Text="{Binding ElementName=This, Path=MaxValue, StringFormat=0.0}"/>
- <Grid Grid.Row="2">
- <Grid.ColumnDefinitions>
- <ColumnDefinition/>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <ProgressBar x:Name="neg" Grid.Column="0" Grid.Row="2" BorderThickness="0" Background="White" Foreground="{StaticResource LightThemeColor}" Maximum="{Binding ElementName=This, Path=MaxValue}" FlowDirection="RightToLeft"/>
- <ProgressBar x:Name="pos" Grid.Column="2" Grid.Row="2" BorderThickness="0" Background="White" Foreground="{StaticResource LightThemeColor}" Maximum="{Binding ElementName=This, Path=MaxValue}"/>
- </Grid>
- </Grid>
- </Border>
- </UserControl>
|