| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 | 
							- <UserControl x:Class="PunkHPX8_Themes.UserControls.ReplenControl"
 
-              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:PunkHPX8_Themes.UserControls" 
 
-              xmlns:converters="clr-namespace:PunkHPX8_Themes.Converters"
 
-              mc:Ignorable="d" x:Name="self"
 
-              d:DesignHeight="312" d:DesignWidth="160">
 
-     <UserControl.Resources>
 
-         <converters:StringToString2 x:Key="stringToString2"/>
 
-         <converters:StringToColorConverter2 x:Key="stringToColor2"/>
 
-     </UserControl.Resources>
 
-     <Grid>
 
-         <Grid.RowDefinitions>
 
-             <RowDefinition Height="89"/>
 
-             <RowDefinition Height="122"/>
 
-             <RowDefinition Height="101"/>
 
-         </Grid.RowDefinitions>
 
-         <StackPanel  Grid.Row="0" Grid.Column="0" Orientation="Vertical" >
 
-             <Label Content="Volume" FontSize="16" FontWeight="Bold" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" HorizontalAlignment="Center" Height="41"/>
 
-             <Border Background="Black" Margin="14,5,14,0" Height="36" >
 
-                 <TextBlock Text="{Binding ElementName=self,Path=CurrentDosingVolume,StringFormat=\{0:F2\} mL}" Foreground="Lime" FontSize="16" FontWeight="Bold" HorizontalAlignment="Center" VerticalAlignment="Center"/>
 
-             </Border>
 
-         </StackPanel>
 
-         <Rectangle Grid.Row="1" RadiusX="10" RadiusY="10" StrokeThickness="4" Opacity="0.7" Width="78" Fill="{Binding ElementName=self,Path=BottleLevel,Converter={StaticResource stringToColor2}}" Height="107" Margin="0,15,0,0">
 
-             <Rectangle.Stroke>
 
-                 <LinearGradientBrush >
 
-                     <GradientStop Color="LightGray" Offset="0.35" />
 
-                     <GradientStop Color="Gray" Offset="1" />
 
-                 </LinearGradientBrush>
 
-             </Rectangle.Stroke>
 
-         </Rectangle>
 
-         <Label Grid.Row="1" Content="{Binding ElementName=self,Path=ReplenName,Converter={StaticResource stringToString2}}" FontSize="19" FontWeight="Bold" Grid.Column="0" Height="61" VerticalAlignment="Top" Margin="30,10,62,0" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" RenderTransformOrigin="0.417,0.878"/>
 
-         <local:FlowPipe Grid.Row="2" IsFlowing="{Binding ElementName=replenPump,Path=IsOpenPump}" IsReverse="True" Height="8"  Width="102" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="36,43,0,0" RenderTransformOrigin="0.529,0.5" >
 
-             <local:FlowPipe.RenderTransform>
 
-                 <TransformGroup>
 
-                     <ScaleTransform/>
 
-                     <SkewTransform/>
 
-                     <RotateTransform Angle="-90.366"/>
 
-                     <TranslateTransform/>
 
-                 </TransformGroup>
 
-             </local:FlowPipe.RenderTransform>
 
-         </local:FlowPipe>
 
-         <local:ReservoirPump x:Name="replenPump"  Grid.Row="2" IsOpenPump="{Binding ElementName=self,Path=IsPumpOpen}" ModuleName="{Binding ElementName=self,Path=ModuleName}" PumpType="{Binding ElementName=self,Path=ReplenName}" RotateTransformValue="-90" Height="55" Width="56"  HorizontalAlignment="Left" VerticalAlignment="Top" Margin="42,19,0,0"/>
 
-         <Canvas Width="40" Height="20" HorizontalAlignment="Left" VerticalAlignment="Top" RenderTransformOrigin="0.5,0.5" Margin="89,35,0,0" Grid.Row="2" >
 
-             <Canvas.RenderTransform>
 
-                 <TransformGroup>
 
-                     <ScaleTransform/>
 
-                     <SkewTransform/>
 
-                     <RotateTransform Angle="-90"/>
 
-                     <TranslateTransform/>
 
-                 </TransformGroup>
 
-             </Canvas.RenderTransform>
 
-             <Polygon Width="10" Points="0,10 20,0 20,20" Fill="Black" StrokeThickness="1" HorizontalAlignment="Left" VerticalAlignment="Center"></Polygon>
 
-             <Polygon Points="0,0 30,0 30,4 0,4" Fill="Black" StrokeThickness="1" Canvas.Left="10" Canvas.Top="8" HorizontalAlignment="Left" VerticalAlignment="Center"></Polygon>
 
-         </Canvas>
 
-     </Grid>
 
- </UserControl>
 
 
  |