18 lines
947 B
Text
18 lines
947 B
Text
|
<UserControl x:Class="OpenFaceOffline.BarGraph"
|
||
|
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"
|
||
|
mc:Ignorable="d"
|
||
|
d:DesignHeight="100" d:DesignWidth="100">
|
||
|
<StackPanel HorizontalAlignment="Center" >
|
||
|
|
||
|
<Border Name="barContainerPos" Background="PowderBlue" Width="32" DockPanel.Dock="Top" MinHeight="50">
|
||
|
<Rectangle Name="barPos" Fill="CadetBlue" Height="0" VerticalAlignment="Bottom"/>
|
||
|
</Border>
|
||
|
<Border Name="barContainerNeg" Background="PowderBlue" Width="32" MinHeight="50">
|
||
|
<Rectangle Name="barNeg" Fill="CadetBlue" Height="0" VerticalAlignment="Top"/>
|
||
|
</Border>
|
||
|
</StackPanel>
|
||
|
</UserControl>
|