| 1234567891011121314151617181920212223242526272829303132333435363738 | <UserControl x:Class="CyberX8_Themes.UserControls.BottleReserveControl"             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:CyberX8_Themes.UserControls"             mc:Ignorable="d" x:Name="self"             d:DesignHeight="100" d:DesignWidth="500">    <Border BorderBrush="Gray">        <Grid>            <Grid.RowDefinitions>                <RowDefinition Height="50"/>                <RowDefinition Height="Auto"/>            </Grid.RowDefinitions>            <Grid.ColumnDefinitions>                <ColumnDefinition Width="1.6*"/>                <ColumnDefinition Width="1*"/>                <ColumnDefinition Width="1*"/>            </Grid.ColumnDefinitions>            <Label Content="Bottle Reserve Volume 1:" FontSize="16" FontWeight="Bold" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" VerticalAlignment="Center" HorizontalAlignment="Center"/>            <Border Grid.Column="1" Margin="5,5,5,5" Background="Black">                <TextBlock Width="128" Text="{Binding ElementName=self, Path=BottleReserveVolume1,StringFormat={}{0:F2} mL}" Height="20" Foreground="Lime" FontSize="18" FontWeight="Bold" TextAlignment="Center" HorizontalAlignment="Center" VerticalAlignment="Center"  />            </Border>            <Button Grid.Column="2" FontSize="14" Content="Reset" Width="94" Click="Replen1Reset_Click" Height="40"  Style="{StaticResource SysBtnStyle}" HorizontalAlignment="Center" VerticalAlignment="Center" />            <Label Grid.Row="1" Content="Bottle Reserve Volume 2:" FontSize="16" FontWeight="Bold" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" VerticalAlignment="Center" HorizontalAlignment="Center"/>            <Border Grid.Row="1" Grid.Column="1" Margin="5,5,5,5" Background="Black">                <TextBlock Width="128" Height="20" Text="{Binding ElementName=self, Path=BottleReserveVolume2,StringFormat={}{0:F2} mL}" Foreground="Lime" FontSize="18" TextAlignment="Center" FontWeight="Bold" HorizontalAlignment="Center" VerticalAlignment="Center"/>            </Border>            <Button Grid.Row="1" Grid.Column="2" FontSize="14" Content="Reset" Click="Replen2Reset_Click" Width="94" Height="40" Style="{StaticResource SysBtnStyle}" HorizontalAlignment="Center" VerticalAlignment="Center" />        </Grid>    </Border></UserControl>
 |