| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 | 
							- <UserControl x:Class="PunkHPX8_Themes.UserControls.DosingControl"
 
-              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:UserControls="clr-namespace:PunkHPX8_Themes.UserControls"
 
-              xmlns:Control="clr-namespace:MECF.Framework.UI.Core.Control;assembly=MECF.Framework.UI.Core" 
 
-              xmlns:Converters="clr-namespace:PunkHPX8_Themes.Converters"
 
-              mc:Ignorable="d" x:Name="self"
 
-              d:DesignHeight="420" d:DesignWidth="330">
 
-     <UserControl.Resources>
 
-         <Converters:IntToTargetNumber1 x:Key="intToTargetNumber1"/>
 
-         <Converters:IntToTargetNumber2 x:Key="intToTargetNumber2"/>
 
-     </UserControl.Resources>
 
-     <Grid x:Name="grid1" Width="{Binding ElementName=self,Path=ReplenNum,Converter={StaticResource intToTargetNumber1}}"
 
-           Height="{Binding ElementName=self,Path=ReplenNum,Converter={StaticResource intToTargetNumber2}}">
 
-         
 
-         <Border BorderBrush="Black" Width="{Binding ElementName=grid1,Path=Width}" Height="{Binding ElementName=grid1,Path=Height}" BorderThickness="2" Grid.RowSpan="3"/>
 
-         <Grid Width="{Binding ElementName=grid1,Path=Width}" Height="{Binding ElementName=grid1,Path=Height}">
 
-             <Grid.RowDefinitions>
 
-                 <RowDefinition Height="53"/>
 
-                 <RowDefinition Height="1"/>
 
-                 <RowDefinition Height="1*"/>
 
-                 <RowDefinition Height="64"/>
 
-             </Grid.RowDefinitions>
 
-             
 
-             <Label Content="{Binding Module}" FontWeight="Bold" FontSize="17" Grid.ColumnSpan="3" HorizontalContentAlignment="Center" VerticalContentAlignment="Center"/>
 
-             <UserControls:CountersControl IsEnabled="{Binding ElementName=self,Path=IsDisableEnabled}" x:Name="Counters" ReplenNum="{Binding ElementName=self,Path=ReplenNum}" ModuleName="{Binding ElementName=self,Path=ModuleName}" Grid.Row="2"  Grid.ColumnSpan="3"
 
-                                           ReplenDatas="{Binding ElementName=self,Path=ReplenDatas}" ReplensPersistentCollection="{Binding ElementName=self,Path=ReplensPersistentCollection}"
 
-                                           IsManualorAuto="{Binding ElementName=self,Path=IsManualorAuto}"/>
 
-             <UserControls:CalibrateControl IsEnabled="{Binding ElementName=self,Path=IsDisableEnabled}" x:Name="Calibrate" ReplenNum="{Binding ElementName=self,Path=ReplenNum}" ModuleName="{Binding ElementName=self,Path=ModuleName}" ReplenDatas="{Binding ElementName=self,Path=ReplenDatas}" 
 
-                                            ReplensPersistentCollection="{Binding ElementName=self,Path=ReplensPersistentCollection}" Visibility="Collapsed" Grid.Row="2"  Grid.ColumnSpan="3" HorizontalAlignment="Center" VerticalAlignment="Center"/>
 
-             <UserControls:RecipeLoadDose IsEnabled="{Binding ElementName=self,Path=IsDisableEnabled}" RecipeType="rds" x:Name="Recipes" ReplenNum="{Binding ElementName=self,Path=ReplenNum}" ModuleName="{Binding ElementName=self,Path=ModuleName}"  
 
-                                          ReplenDatas="{Binding ElementName=self,Path=ReplenDatas}"  Visibility="Collapsed" Grid.Row="2"  Grid.ColumnSpan="3"/>
 
-             <Button Grid.Row="3" IsEnabled="{Binding IsEnabled}" Content="Prev" FontSize="16" Click="Prev_Click" Style="{StaticResource SysBtnStyle}" Height="39" Width="85" HorizontalAlignment="Left" VerticalAlignment="Center" Margin="18,180,0,0"/>
 
-             <Grid Grid.Row="3" Grid.ColumnSpan="3">
 
-                 <Grid.ColumnDefinitions>
 
-                     <ColumnDefinition/>
 
-                     <ColumnDefinition/>
 
-                     <ColumnDefinition/>
 
-                 </Grid.ColumnDefinitions>
 
-                 <Button Content="Prev" IsEnabled="{Binding ElementName=self,Path=IsAutoEnabled}" Grid.Column="0" FontSize="16" Click="Prev_Click" Style="{StaticResource SysBtnStyle}" Height="39" Width="85" HorizontalAlignment="Center" VerticalAlignment="Center" />
 
-                 <Label Grid.Column="1" Content="{Binding ElementName=self,Path=MenuName}" FontSize="16" FontWeight="Bold" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" VerticalAlignment="Center" HorizontalAlignment="Center" />
 
-                 <Button Grid.Column="2" IsEnabled="{Binding ElementName=self,Path=IsAutoEnabled}" FontSize="16" Content="Next"  Click="Next_Click" Style="{StaticResource SysBtnStyle}" Height="39" Width="85" HorizontalAlignment="Center" VerticalAlignment="Center" />
 
-             </Grid>
 
-             
 
-             
 
-         </Grid>
 
-     </Grid>
 
- </UserControl>
 
 
  |