<UserControl x:Class="Aucma.Core.OldBoxFoam.Views.OldBoxFoamPageView"
             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:Aucma.Core.OldBoxFoam.Views"
             mc:Ignorable="d" 
             Background="#1152AC"    
             FontFamily="Microsoft YaHei"
             d:DesignHeight="450" d:DesignWidth="800">

    <UserControl.Resources>
        <Style x:Key="DataGridTextColumnCenterSytle" TargetType="{x:Type TextBlock}">
            <Setter Property="VerticalAlignment" Value="Center" />
            <Setter Property="HorizontalAlignment" Value="Left" />
        </Style>

        <Style TargetType="DataGrid">
            <!--网格线颜色-->
            <Setter Property="CanUserResizeColumns" Value="false"/>
            <Setter Property="Background" Value="#1152AC" />
            <Setter Property="BorderBrush" Value="#4285DE" />
            <Setter Property="Foreground" Value="White"/>
            <Setter Property="HorizontalGridLinesBrush">
                <Setter.Value>
                    <SolidColorBrush Color="#4285DE"/>
                </Setter.Value>
            </Setter>
            <Setter Property="VerticalGridLinesBrush">
                <Setter.Value>
                    <SolidColorBrush Color="#1152AC"/>
                </Setter.Value>
            </Setter>
        </Style>
        <!--列头标题栏样式-->
        <Style TargetType="DataGridColumnHeader">
            <Setter Property="HorizontalContentAlignment" Value="Left" />
            <Setter Property="BorderBrush" Value="#dddddd" />
            <Setter Property="Height" Value="40"/>
            <Setter Property="FontSize" Value="18"/>
            <Setter Property="Background" Value="#4285DE"/>
            <Setter Property="Foreground" Value="White"/>
        </Style>

        <!--单元格样式-->
        <Style TargetType="DataGridCell">
            <Setter Property="FocusVisualStyle" Value="{x:Null}" />
            <Setter Property="BorderThickness" Value="0" />
            <Setter Property="BorderBrush" Value="Gray" />
            <Setter Property="Height" Value="40"/>
            <Setter Property="FontSize" Value="18"/>
            <Setter Property="Template">
                <Setter.Value>
                    <ControlTemplate TargetType="{x:Type DataGridCell}">
                        <Grid Background="{TemplateBinding Background}" >
                            <ContentPresenter HorizontalAlignment="Left" VerticalAlignment="Center" />
                        </Grid>
                    </ControlTemplate>
                </Setter.Value>
            </Setter>
            <Style.Triggers>
                <Trigger Property="IsSelected" Value="True">
                    <Setter Property="Background" Value="#1152AC"/>
                    <Setter Property="Foreground" Value="White"/>
                </Trigger>
            </Style.Triggers>

        </Style>
    </UserControl.Resources>
    
    <Grid Margin="0 10 0 0">
        <Grid>
            <Grid.Resources>
                <Style TargetType="TextBlock">
                    <Setter Property="VerticalAlignment" Value="Center"/>
                    <Setter Property="HorizontalAlignment" Value="Center"/>
                    <Setter Property="FontSize" Value="16"/>
                    <Setter Property="FontFamily" Value="Microsoft YaHei"/>
                </Style>
                <Style TargetType="Border">
                    <Setter Property="BorderBrush" Value="#0288d1"/>
                    <Setter Property="BorderThickness" Value="1"/>
                </Style>
            </Grid.Resources>
            <Grid.RowDefinitions>
                <RowDefinition/>
                <RowDefinition/>
                <RowDefinition/>
                <RowDefinition/>
                <RowDefinition/>
                <RowDefinition/>
                <RowDefinition/>
                <RowDefinition/>
                <RowDefinition/>
                <RowDefinition/>
                <RowDefinition/>
                <RowDefinition/>
                <RowDefinition/>
                <RowDefinition/>
            </Grid.RowDefinitions>
            <Grid.ColumnDefinitions>
                <ColumnDefinition Width="0.5*"/>
                <ColumnDefinition />
                <ColumnDefinition />
                <ColumnDefinition/>
                <ColumnDefinition Width="0.5*"/>
                <ColumnDefinition Width="0.5*"/>
                <ColumnDefinition />
                <ColumnDefinition />
                <ColumnDefinition/>
                <ColumnDefinition Width="0.5*"/>
            </Grid.ColumnDefinitions>
            <Border Grid.Row="0"  Grid.ColumnSpan="4" Background="#1157b9">
                <TextBlock Text="发泡线" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="1" Grid.Column="0" Background="#1157b9">
                <TextBlock Text="夹具号" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="2" Grid.Column="0" Background="#1157b9">
                <TextBlock Text="1" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="3" Grid.Column="0" Background="#1157b9">
                <TextBlock Text="2" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="4" Grid.Column="0" Background="#1157b9">
                <TextBlock Text="3" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="5" Grid.Column="0" Background="#1157b9">
                <TextBlock Text="4" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="6" Grid.Column="0" Background="#1157b9">
                <TextBlock Text="5" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="7" Grid.Column="0" Background="#1157b9">
                <TextBlock Text="6" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="8" Grid.Column="0" Background="#1157b9">
                <TextBlock Text="7" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="9" Grid.Column="0" Background="#1157b9">
                <TextBlock Text="8" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="10" Grid.Column="0" Background="#1157b9">
                <TextBlock Text="9" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="11" Grid.Column="0" Background="#1157b9">
                <TextBlock Text="10" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="12" Grid.Column="0" Background="#1157b9">
                <TextBlock Text="11" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="13" Grid.Column="0" Background="#1157b9">
                <TextBlock Text="12" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>

            <Border Grid.Row="1" Grid.Column="1" Background="#1157b9">
                <TextBlock Text="状态" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="2" Grid.Column="1" >
                <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[0]}" StrokeThickness="1" Fill="{Binding StatusColor[0]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
            </Border>
            <Border Grid.Row="3" Grid.Column="1" >
                <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[1]}" StrokeThickness="1" Fill="{Binding StatusColor[1]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
            </Border>
            <Border Grid.Row="4" Grid.Column="1" >
                <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[2]}" StrokeThickness="1" Fill="{Binding StatusColor[2]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
            </Border>
            <Border Grid.Row="5" Grid.Column="1" >
                <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[3]}" StrokeThickness="1" Fill="{Binding StatusColor[3]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
            </Border>
            <Border Grid.Row="6" Grid.Column="1" >
                <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[4]}" StrokeThickness="1" Fill="{Binding StatusColor[5]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
            </Border>
            <Border Grid.Row="7" Grid.Column="1" >
                <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[5]}" StrokeThickness="1" Fill="{Binding StatusColor[5]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
            </Border>
            <Border Grid.Row="8" Grid.Column="1" >
                <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[6]}" StrokeThickness="1" Fill="{Binding StatusColor[5]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
            </Border>
            <Border Grid.Row="9" Grid.Column="1" >
                <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[7]}" StrokeThickness="1" Fill="{Binding StatusColor[5]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
            </Border>
            <Border Grid.Row="10" Grid.Column="1" >
                <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[8]}" StrokeThickness="1" Fill="{Binding StatusColor[5]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
            </Border>
            <Border Grid.Row="11" Grid.Column="1" >
                <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[9]}" StrokeThickness="1" Fill="{Binding StatusColor[5]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
            </Border>
            <Border Grid.Row="12" Grid.Column="1" >
                <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[10]}" StrokeThickness="1" Fill="{Binding StatusColor[5]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
            </Border>
            <Border Grid.Row="13" Grid.Column="1" >
                <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[11]}" StrokeThickness="1" Fill="{Binding StatusColor[5]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
            </Border>
            <Border Grid.Row="1" Grid.Column="2" Background="#1157b9">
                <TextBlock Text="发泡型号" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="2" Grid.Column="2" >
                <TextBlock Text="{Binding FixtureName[0]}"   Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="3" Grid.Column="2">
                <TextBlock Text="{Binding FixtureName[1]}"  Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="4" Grid.Column="2">
                <TextBlock Text="{Binding FixtureName[2]}"  Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="5" Grid.Column="2">
                <TextBlock Text="{Binding FixtureName[3]}"  Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="6" Grid.Column="2">
                <TextBlock Text="{Binding FixtureName[4]}"  Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="7" Grid.Column="2">
                <TextBlock Text="{Binding FixtureName[5]}"  Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="8" Grid.Column="2">
                <TextBlock Text="{Binding FixtureName[6]}"  Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="9" Grid.Column="2">
                <TextBlock Text="{Binding FixtureName[7]}"  Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="10" Grid.Column="2">
                <TextBlock Text="{Binding FixtureName[8]}"  Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="11" Grid.Column="2">
                <TextBlock Text="{Binding FixtureName[9]}"  Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="12" Grid.Column="2">
                <TextBlock Text="{Binding FixtureName[10]}"  Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="13" Grid.Column="2">
                <TextBlock Text="{Binding FixtureName[11]}"  Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="1" Grid.Column="3" Background="#1157b9">
                <TextBlock Text="夹具产量" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="2" Grid.Column="3" >
                <TextBlock Text="{Binding Production[0]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="3" Grid.Column="3">
                <TextBlock Text="{Binding Production[1]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="4" Grid.Column="3">
                <TextBlock Text="{Binding Production[2]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="5"  Grid.Column="3"  >
                <TextBlock Text="{Binding Production[3]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="6"  Grid.Column="3">
                <TextBlock Text="{Binding Production[4]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="7"  Grid.Column="3"  >
                <TextBlock Text="{Binding Production[5]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="8" Grid.Column="3" >
                <TextBlock Text="{Binding Production[6]}"   Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="9" Grid.Column="3">
                <TextBlock Text="{Binding Production[7]}"  Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="10" Grid.Column="3">
                <TextBlock Text="{Binding Production[8]}"  Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="11" Grid.Column="3">
                <TextBlock Text="{Binding Production[9]}"  Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="12" Grid.Column="3">
                <TextBlock Text="{Binding Production[10]}"  Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="13" Grid.Column="3">
                <TextBlock Text="{Binding Production[11]}"  Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="0"  Grid.Column="4"  Grid.ColumnSpan="2" >
                <TextBlock Text="{Binding Totle,Mode=TwoWay}" Foreground="White" FontSize="30" FontWeight="Bold"/>
            </Border>

            <Border Grid.Row="1" Grid.Column="4" Background="#1157b9">
                <TextBlock Text="节拍" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="2" Grid.Column="4" >
                <TextBlock Text="{Binding Beat[0]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="3" Grid.Column="4">
                <TextBlock Text="{Binding Beat[1]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="4" Grid.Column="4">
                <TextBlock Text="{Binding Beat[2]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="5" Grid.Column="4">
                <TextBlock Text="{Binding Beat[3]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="6" Grid.Column="4">
                <TextBlock Text="{Binding Beat[4]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="7" Grid.Column="4">
                <TextBlock Text="{Binding Beat[5]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="8" Grid.Column="4">
                <TextBlock Text="{Binding Beat[6]}"  Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="9" Grid.Column="4">
                <TextBlock Text="{Binding Beat[7]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="10" Grid.Column="4">
                <TextBlock Text="{Binding Beat[8]}"  Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="11" Grid.Column="4">
                <TextBlock Text="{Binding Beat[9]}"  Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="12" Grid.Column="4">
                <TextBlock Text="{Binding Beat[10]}"  Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="13" Grid.Column="4">
                <TextBlock Text="{Binding Beat[11]}"  Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="0" Grid.Column="6"  Grid.ColumnSpan="4" Background="#1157b9">
                <TextBlock Text="发泡线" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>

            <Border Grid.Row="1" Grid.Column="5" Background="#1157b9">
                <TextBlock Text="夹具号" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="2" Grid.Column="5" Background="#1157b9">
                <TextBlock Text="1" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="3" Grid.Column="5" Background="#1157b9">
                <TextBlock Text="2" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="4" Grid.Column="5" Background="#1157b9">
                <TextBlock Text="3" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="5" Grid.Column="5" Background="#1157b9">
                <TextBlock Text="4" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="6" Grid.Column="5" Background="#1157b9">
                <TextBlock Text="5" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="7" Grid.Column="5" Background="#1157b9">
                <TextBlock Text="6" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="8" Grid.Column="5" Background="#1157b9">
                <TextBlock Text="7" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="9" Grid.Column="5" Background="#1157b9">
                <TextBlock Text="8" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="10" Grid.Column="5" Background="#1157b9">
                <TextBlock Text="9" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="11" Grid.Column="5" Background="#1157b9">
                <TextBlock Text="10" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="12" Grid.Column="5" Background="#1157b9">
                <TextBlock Text="11" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="13" Grid.Column="5" Background="#1157b9">
                <TextBlock Text="12" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="1" Grid.Column="6" Background="#1157b9">
                <TextBlock Text="状态" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>

            <Border Grid.Row="2" Grid.Column="6" >
                <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[12]}" StrokeThickness="1" Fill="{Binding StatusColor[3]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
            </Border>
            <Border Grid.Row="3" Grid.Column="6" >
                <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[13]}" StrokeThickness="1" Fill="{Binding StatusColor[4]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
            </Border>
            <Border Grid.Row="4" Grid.Column="6" >
                <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[14]}" StrokeThickness="1" Fill="{Binding StatusColor[5]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
            </Border>
            <Border Grid.Row="5" Grid.Column="6" >
                <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[15]}" StrokeThickness="1" Fill="{Binding StatusColor[5]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
            </Border>
            <Border Grid.Row="6" Grid.Column="6" >
                <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[16]}" StrokeThickness="1" Fill="{Binding StatusColor[5]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
            </Border>
            <Border Grid.Row="7" Grid.Column="6" >
                <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[17]}" StrokeThickness="1" Fill="{Binding StatusColor[5]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
            </Border>
            <Border Grid.Row="8" Grid.Column="6" >
                <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[18]}" StrokeThickness="1" Fill="{Binding StatusColor[5]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
            </Border>
            <Border Grid.Row="9" Grid.Column="6" >
                <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[19]}" StrokeThickness="1" Fill="{Binding StatusColor[5]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
            </Border>
            <Border Grid.Row="10" Grid.Column="6" >
                <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[20]}" StrokeThickness="1" Fill="{Binding StatusColor[5]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
            </Border>
            <Border Grid.Row="11" Grid.Column="6" >
                <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[21]}" StrokeThickness="1" Fill="{Binding StatusColor[5]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
            </Border>
            <Border Grid.Row="12" Grid.Column="6" >
                <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[22]}" StrokeThickness="1" Fill="{Binding StatusColor[5]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
            </Border>
            <Border Grid.Row="13" Grid.Column="6" >
                <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[23]}" StrokeThickness="1" Fill="{Binding StatusColor[5]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
            </Border>
            <Border Grid.Row="1" Grid.Column="7" Background="#1157b9">
                <TextBlock Text="发泡型号" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="2" Grid.Column="7" >
                <TextBlock Text="{Binding FixtureName[12]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="3" Grid.Column="7" >
                <TextBlock Text="{Binding FixtureName[13]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="4" Grid.Column="7" >
                <TextBlock Text="{Binding FixtureName[14]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="5" Grid.Column="7" >
                <TextBlock Text="{Binding FixtureName[15]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="6" Grid.Column="7" >
                <TextBlock Text="{Binding FixtureName[16]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="7" Grid.Column="7" >
                <TextBlock Text="{Binding FixtureName[17]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="8" Grid.Column="7" >
                <TextBlock Text="{Binding FixtureName[18]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="9" Grid.Column="7" >
                <TextBlock Text="{Binding FixtureName[19]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="10" Grid.Column="7" >
                <TextBlock Text="{Binding FixtureName[20]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="11" Grid.Column="7" >
                <TextBlock Text="{Binding FixtureName[21]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="12" Grid.Column="7" >
                <TextBlock Text="{Binding FixtureName[22]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="13" Grid.Column="7" >
                <TextBlock Text="{Binding FixtureName[23]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="1" Grid.Column="8" Background="#1157b9">
                <TextBlock Text="夹具产量" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="2" Grid.Column="8" >
                <TextBlock Text="{Binding Production[12]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="3" Grid.Column="8">
                <TextBlock Text="{Binding Production[13]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="4" Grid.Column="8">
                <TextBlock Text="{Binding Production[14]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="5" Grid.Column="8">
                <TextBlock Text="{Binding Production[15]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="6" Grid.Column="8">
                <TextBlock Text="{Binding Production[16]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="7" Grid.Column="8">
                <TextBlock Text="{Binding Production[17]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="8" Grid.Column="8">
                <TextBlock Text="{Binding Production[18]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="9" Grid.Column="8">
                <TextBlock Text="{Binding Production[19]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="10" Grid.Column="8">
                <TextBlock Text="{Binding Production[20]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="11" Grid.Column="8">
                <TextBlock Text="{Binding Production[21]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="12" Grid.Column="8">
                <TextBlock Text="{Binding Production[22]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="13" Grid.Column="8">
                <TextBlock Text="{Binding Production[23]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="1" Grid.Column="9" Background="#1157b9">
                <TextBlock Text="节拍" Foreground="White" FontSize="18" FontWeight="Bold"/>
            </Border>
            <Border Grid.Row="2" Grid.Column="9" >
                <TextBlock Text="{Binding Beat[12]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="3" Grid.Column="9">
                <TextBlock Text="{Binding Beat[13]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="4" Grid.Column="9">
                <TextBlock Text="{Binding Beat[14]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="5" Grid.Column="9">
                <TextBlock Text="{Binding Beat[15]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="6" Grid.Column="9">
                <TextBlock Text="{Binding Beat[16]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="7" Grid.Column="9">
                <TextBlock Text="{Binding Beat[17]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="8" Grid.Column="9">
                <TextBlock Text="{Binding Beat[18]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="9" Grid.Column="9">
                <TextBlock Text="{Binding Beat[19]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="10" Grid.Column="9">
                <TextBlock Text="{Binding Beat[20]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="11" Grid.Column="9">
                <TextBlock Text="{Binding Beat[21]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="12" Grid.Column="9">
                <TextBlock Text="{Binding Beat[22]}" Foreground="White" FontSize="18"/>
            </Border>
            <Border Grid.Row="13" Grid.Column="9">
                <TextBlock Text="{Binding Beat[23]}" Foreground="White" FontSize="18"/>
            </Border>
        </Grid>
    </Grid>
    
 
</UserControl>