123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <UserControl x:Class="FurnaceUI.Views.Maintenances.WaferRobotPositionAxisEditView"
- 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" xmlns:controls="http://OpenSEMI.Ctrlib.com/presentation"
- mc:Ignorable="d"
- Height="650" 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="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="TrsSt"/>
- <Border Grid.Row="0" Grid.ColumnSpan="2" Background="White" Grid.Column="1" BorderBrush="Gray" BorderThickness="1,1,1,0">
- <TextBox IsEnabled="False" VerticalContentAlignment="Center" HorizontalAlignment="Center" HorizontalContentAlignment="Center" Width="316" Text="{Binding PName,Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />
- </Border>
- <Label Grid.Row="1" Grid.Column="0" Style="{StaticResource LabelGrid_Title}" Content="ToDownAxis"/>
- <Border Grid.Row="1" Background="White" Grid.Column="1" BorderBrush="Gray" BorderThickness="1,1,1,0">
- <controls:TextBoxEx Tag="Number" Width="316" Text="{Binding ValueList[1].CurrentValue,Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" KeepDecimals="3" EditBoxMode="Decimal" >
- </controls:TextBoxEx>
- </Border>
- <Label Grid.Row="2" Grid.Column="0" Style="{StaticResource LabelGrid_Title}" Content="RotateAxis"/>
- <Border Grid.Row="2" Background="White" Grid.Column="1" BorderBrush="Gray" BorderThickness="1,1,1,0">
- <controls:TextBoxEx Tag="Number" Width="316" Text="{Binding ValueList[2].CurrentValue,Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" KeepDecimals="3" EditBoxMode="Decimal" >
- </controls:TextBoxEx>
- </Border>
- <Label Grid.Row="3" Grid.Column="0" Style="{StaticResource LabelGrid_Title}" Content="TelescopingAxis1"/>
- <Border Grid.Row="3" Background="White" Grid.Column="1" BorderBrush="Gray" BorderThickness="1,1,1,0">
- <controls:TextBoxEx Tag="Number" Width="316" Text="{Binding ValueList[3].CurrentValue,Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" KeepDecimals="3" EditBoxMode="Decimal" >
- </controls:TextBoxEx>
- </Border>
- <Label Grid.Row="4" Grid.Column="0" Style="{StaticResource LabelGrid_Title}" Content="TelescopingAxis2"/>
- <Border Grid.Row="4" Background="White" Grid.Column="1" BorderBrush="Gray" BorderThickness="1,1,1,0">
- <controls:TextBoxEx Tag="Number" Width="316" Text="{Binding ValueList[4].CurrentValue,Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" KeepDecimals="3" EditBoxMode="Decimal" >
- </controls:TextBoxEx>
- </Border>
- <Label Grid.Row="5" Grid.Column="0" Style="{StaticResource LabelGrid_Title}" Content="VariableSpacingAxis"/>
- <Border Grid.Row="5" Background="White" Grid.Column="1" BorderBrush="Gray" BorderThickness="1,1,1,0">
- <controls:TextBoxEx Tag="Number" Width="316" Text="{Binding ValueList[5].CurrentValue,Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" KeepDecimals="3" EditBoxMode="Decimal" >
- </controls:TextBoxEx>
- </Border>
- <Button Content="Save" Grid.Row="5" Width="120" Margin="79,100,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="5" Grid.Column="1" Width="120" Margin="131,100,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>
|