| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 | <UserControl x:Class="FurnaceUI.Views.Maintenances.WaferRobotParameterEditView"              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.Parameter"   xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"   xmlns:cal="http://www.caliburn.org"              mc:Ignorable="d"              Height="450" Width="500">    <Grid>        <Border>            <Border Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="3" BorderBrush="Gray" BorderThickness="1,1,1,1"  Margin="10,10,10,5" >                <Grid  VerticalAlignment="Top"  >                    <Grid.RowDefinitions>                        <RowDefinition Height="80"/>                        <RowDefinition Height="80"/>                        <RowDefinition Height="80"/>                        <RowDefinition Height="80"/>                        <RowDefinition Height="*"/>                    </Grid.RowDefinitions>                    <Grid.ColumnDefinitions>                        <ColumnDefinition Width="158"/>                        <ColumnDefinition/>                    </Grid.ColumnDefinitions>                    <Label Grid.Row="0" Grid.Column="0"  Style="{StaticResource LabelGrid_Title}" Content="No"/>                    <Border  Grid.Row="0" Background="White" Grid.Column="1" BorderBrush="Gray" BorderThickness="1,1,1,0">                        <TextBox  IsEnabled="False"  Width="316"  Text="{Binding PName,Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/>                    </Border>                    <Label Grid.Row="1" Grid.Column="0"  Style="{StaticResource LabelGrid_Title}" Content="SettingItem"/>                    <Border  Grid.Row="1"  Background="White" Grid.Column="1" BorderBrush="Gray" BorderThickness="1,1,1,0">                        <TextBox IsEnabled="False"  Width="316"   Text="{Binding ValueList[0].CurrentValue,Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />                    </Border>                    <Label Grid.Row="2" Grid.Column="0"  Style="{StaticResource LabelGrid_Title}" Content="SetValue"/>                    <Border  Grid.Row="2" Background="White" Grid.Column="1" BorderBrush="Gray" BorderThickness="1,1,1,0">                        <TextBox Tag="Number" Width="316"   Text="{Binding ValueList[1].CurrentValue,Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />                    </Border>                    <Label Grid.Row="3" Grid.Column="0"  Style="{StaticResource LabelGrid_Title}" Content="Unit"/>                    <Border  Grid.Row="3" Background="White" Grid.Column="1" BorderBrush="Gray" BorderThickness="1,1,1,0">                        <TextBox   IsEnabled="False"  Width="316"   Text="{Binding ValueList[2].CurrentValue,Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />                    </Border>                                      <Button Content="Save" Grid.Row="5" Width="120" Margin="79,23,279,-18" Height="45" Grid.ColumnSpan="2" Grid.RowSpan="2">                        <i:Interaction.Triggers>                            <i:EventTrigger EventName="Click">                                <cal:ActionMessage MethodName="SaveBtnClick">                                </cal:ActionMessage>                            </i:EventTrigger>                        </i:Interaction.Triggers>                    </Button>                    <Button Content="Cancel" Grid.Row="9" Grid.Column="1" Width="120" Margin="131,23,69,-18" Height="45" Grid.RowSpan="2">                        <i:Interaction.Triggers>                            <i:EventTrigger EventName="Click">                                <cal:ActionMessage MethodName="CancelBtnClick">                                </cal:ActionMessage>                            </i:EventTrigger>                        </i:Interaction.Triggers>                    </Button>                </Grid>            </Border>        </Border>    </Grid></UserControl>
 |