| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 | <UserControl x:Class="SummaryModule.Views.Transfer"             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:SummaryModule.Views"             xmlns:controls="clr-namespace:SummaryModule.Controls"             mc:Ignorable="d"              d:DesignHeight="450" d:DesignWidth="800">    <UserControl.Resources>        <ResourceDictionary >            <ResourceDictionary.MergedDictionaries>                <ResourceDictionary Source="/UICommon;component/Resources.xaml"/>            </ResourceDictionary.MergedDictionaries>        </ResourceDictionary>    </UserControl.Resources>    <Border Background="{StaticResource BorderBackgroundColor}" Margin="8" CornerRadius="8">        <Grid Margin="8">            <Grid.RowDefinitions>                <RowDefinition/>                <RowDefinition Height="8"/>                <RowDefinition Height="auto"/>                <RowDefinition Height="8"/>                <RowDefinition Height="auto"/>            </Grid.RowDefinitions>            <Grid Grid.Row="2" Margin="4,0">                <Grid.ColumnDefinitions>                    <ColumnDefinition Width="360"/>                    <ColumnDefinition/>                    <ColumnDefinition Width="360"/>                    <ColumnDefinition Width="8"/>                    <ColumnDefinition Width="auto"/>                </Grid.ColumnDefinitions>                <controls:Header_Content Height="32" Header="Mapping Result:"/>                <controls:Header_Content Height="32" Grid.Column="2" Header="Foup Cycle Count:"/>                <StackPanel Orientation="Horizontal" Grid.Column="4">                    <StackPanel Background="#b1d2f2" VerticalAlignment="Center" HorizontalAlignment="Center">                        <Border BorderBrush="{StaticResource DarkBorderColor}" BorderThickness="1" Height="24" Width="48">                            <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">All</TextBlock>                        </Border>                        <Border BorderBrush="{StaticResource DarkBorderColor}" BorderThickness="1,0,1,1" Height="24" Width="48">                            <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">                                <Run>0</Run>                                <Run>/</Run>                                <Run>0</Run>                            </TextBlock>                        </Border>                    </StackPanel>                    <StackPanel Background="#ffffff" VerticalAlignment="Center" HorizontalAlignment="Center">                        <Border BorderBrush="{StaticResource DarkBorderColor}" BorderThickness="1" Height="24" Width="48">                            <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">Empty</TextBlock>                        </Border>                        <Border BorderBrush="{StaticResource DarkBorderColor}" BorderThickness="1,0,1,1" Height="24" Width="48">                            <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">0</TextBlock>                        </Border>                    </StackPanel>                    <StackPanel Background="#02ffff" VerticalAlignment="Center" HorizontalAlignment="Center">                        <Border BorderBrush="{StaticResource DarkBorderColor}" BorderThickness="1" Height="24" Width="32">                            <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">P1</TextBlock>                        </Border>                        <Border BorderBrush="{StaticResource DarkBorderColor}" BorderThickness="1,0,1,1" Height="24" Width="32">                            <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">0</TextBlock>                        </Border>                    </StackPanel>                    <StackPanel Background="#02ffff" VerticalAlignment="Center" HorizontalAlignment="Center">                        <Border BorderBrush="{StaticResource DarkBorderColor}" BorderThickness="1" Height="24" Width="32">                            <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">P2</TextBlock>                        </Border>                        <Border BorderBrush="{StaticResource DarkBorderColor}" BorderThickness="1,0,1,1" Height="24" Width="32">                            <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">0</TextBlock>                        </Border>                    </StackPanel>                    <StackPanel Background="#fb9355" VerticalAlignment="Center" HorizontalAlignment="Center">                        <Border BorderBrush="{StaticResource DarkBorderColor}" BorderThickness="1" Height="24" Width="32">                            <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">SD</TextBlock>                        </Border>                        <Border BorderBrush="{StaticResource DarkBorderColor}" BorderThickness="1,0,1,1" Height="24" Width="32">                            <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">0</TextBlock>                        </Border>                    </StackPanel>                    <StackPanel Background="#aa93ff" VerticalAlignment="Center" HorizontalAlignment="Center">                        <Border BorderBrush="{StaticResource DarkBorderColor}" BorderThickness="1" Height="24" Width="32">                            <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">ED</TextBlock>                        </Border>                        <Border BorderBrush="{StaticResource DarkBorderColor}" BorderThickness="1,0,1,1" Height="24" Width="32">                            <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">0</TextBlock>                        </Border>                    </StackPanel>                    <StackPanel Background="#0395ff" VerticalAlignment="Center" HorizontalAlignment="Center">                        <Border BorderBrush="{StaticResource DarkBorderColor}" BorderThickness="1" Height="24" Width="32">                            <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">M1</TextBlock>                        </Border>                        <Border BorderBrush="{StaticResource DarkBorderColor}" BorderThickness="1,0,1,1" Height="24" Width="32">                            <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">0</TextBlock>                        </Border>                    </StackPanel>                    <StackPanel Background="#ff6fab" VerticalAlignment="Center" HorizontalAlignment="Center">                        <Border BorderBrush="{StaticResource DarkBorderColor}" BorderThickness="1" Height="24" Width="32">                            <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">M2</TextBlock>                        </Border>                        <Border BorderBrush="{StaticResource DarkBorderColor}" BorderThickness="1,0,1,1" Height="24" Width="32">                            <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">0</TextBlock>                        </Border>                    </StackPanel>                </StackPanel>            </Grid>            <UniformGrid Grid.Row="4" Rows="1">                <Button Style="{StaticResource FunctionButton}" Margin="4" Height="36">Init</Button>                <Button Style="{StaticResource FunctionButton}" Margin="4" Height="36">Manual Operation</Button>                <Button Style="{StaticResource FunctionButton}" Margin="4" Height="36">Modify</Button>                <Button Style="{StaticResource FunctionButton}" Margin="4" Height="36">Sensor Status</Button>                <Button Style="{StaticResource FunctionButton}" Margin="4" Height="36">Return Wafer</Button>                <Button Style="{StaticResource FunctionButton}" Margin="4" Height="36">Delete Wafer</Button>                <Button Style="{StaticResource FunctionButton}" Margin="4" Height="36">Delete Carrier</Button>            </UniformGrid>        </Grid>    </Border></UserControl>
 |