| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 | <UserControl x:Class="FurnaceUI.Views.Editors.RecipeLayoutMonitorWaferReplaceView"             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:FurnaceUI.Views.Editors" xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity" xmlns:cal="http://www.caliburn.org" xmlns:converter="clr-namespace:FurnaceUI.Converter"             mc:Ignorable="d"               Height="300" Width="540" FontFamily="Segoe">    <UserControl.Resources>        <converter:IsCheckShowStringConverter  x:Key="isCheckShowStringConverter"/>        <LinearGradientBrush x:Key="Area_BG_Color" StartPoint="0,0" EndPoint="0,0">            <GradientStop Color="#FFa1c9f5" Offset="0" />            <GradientStop Color="#FFa1c9f5" Offset="0.1" />        </LinearGradientBrush>        <Style TargetType="TextBlock">            <Setter Property="FontSize" Value="14"/>            <Setter Property="VerticalAlignment" Value="Center"/>        </Style>        <Style TargetType="RadioButton" BasedOn="{StaticResource NormalRadioButton}">            <Setter Property="FontSize" Value="16"/>        </Style>        <Style TargetType="TextBox">            <Setter Property="VerticalContentAlignment" Value="Center"/>            <Setter Property="HorizontalContentAlignment" Value="Center"/>        </Style>    </UserControl.Resources>    <Grid Background="{StaticResource Area_BG_Color}">        <Grid.RowDefinitions>            <RowDefinition Height="*"/>            <RowDefinition Height="80"/>        </Grid.RowDefinitions>        <Grid Margin="10,10,10,0">            <Grid.RowDefinitions>                <RowDefinition Height="60"/>                <RowDefinition/>            </Grid.RowDefinitions>            <WrapPanel VerticalAlignment="Center">                <RadioButton Content="Before Edit" Margin="4"/>                <RadioButton Content="After Edit" Margin="4" IsChecked="True"/>            </WrapPanel>            <Grid Grid.Row="1" Height="100">                <Grid.RowDefinitions>                    <RowDefinition/>                    <RowDefinition/>                </Grid.RowDefinitions>                <Grid.ColumnDefinitions>                    <ColumnDefinition/>                    <ColumnDefinition/>                </Grid.ColumnDefinitions>                <TextBlock Text="Monitor WaferFill Replace"/>                <TextBox Grid.Row="0" Grid.Column="1" Text="{Binding MonitorWaferFillReplace}" Margin="8">                    <i:Interaction.Triggers>                        <i:EventTrigger EventName="PreviewMouseDown">                            <cal:ActionMessage MethodName="TextSelectCmdMouseDown">                                <cal:Parameter Value="WaferFill"></cal:Parameter>                                <cal:Parameter Value="$source"></cal:Parameter>                            </cal:ActionMessage>                        </i:EventTrigger>                    </i:Interaction.Triggers>                </TextBox>                <TextBlock Grid.Row="1" Text="Monitor WaferShort Wafer Charge"/>                <TextBox Grid.Row="1" Grid.Column="1" Text="{Binding MonitorWaferShort}"  Margin="8">                    <i:Interaction.Triggers>                        <i:EventTrigger EventName="PreviewMouseDown">                            <cal:ActionMessage MethodName="TextSelectCmdMouseDown">                                <cal:Parameter Value="WaferShort"></cal:Parameter>                                <cal:Parameter Value="$source"></cal:Parameter>                            </cal:ActionMessage>                        </i:EventTrigger>                    </i:Interaction.Triggers>                </TextBox>            </Grid>        </Grid>        <Border Grid.Row="1">            <Grid>                <Canvas>                    <Button Content="Save" Canvas.Left="206" Canvas.Top="19" Width="130" Height="45"  Style="{StaticResource CommandButton}" IsEnabled="{Binding IsEnable}">                        <i:Interaction.Triggers>                            <i:EventTrigger EventName="Click">                                <cal:ActionMessage MethodName="TempSetSave">                                </cal:ActionMessage>                            </i:EventTrigger>                        </i:Interaction.Triggers>                    </Button>                    <Button Content="Close" Canvas.Left="356" Canvas.Top="19" Width="130" Height="45" Style="{StaticResource CommandButton}">                        <i:Interaction.Triggers>                            <i:EventTrigger EventName="Click">                                <cal:ActionMessage MethodName="TempSetCancel">                                </cal:ActionMessage>                            </i:EventTrigger>                        </i:Interaction.Triggers>                    </Button>                </Canvas>            </Grid>        </Border>    </Grid></UserControl>
 |