12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <UserControl x:Class="FurnaceUI.Views.Jobs.InputCarrierInfoView"
- 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.Jobs" xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity" xmlns:cal="http://www.caliburn.org"
- mc:Ignorable="d"
- Height="350" d:DesignWidth="700">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition></RowDefinition>
- <RowDefinition Height="50"></RowDefinition>
- </Grid.RowDefinitions>
- <StackPanel Orientation="Vertical" Margin="100,-100,0,0" Grid.Row="0">
- <StackPanel Orientation="Horizontal" Margin="100,150,0,0">
- <TextBlock Text="Carrier ID:" FontSize="20" Margin="0,10,0,0"></TextBlock>
- <TextBox Text="{Binding CarrierID,UpdateSourceTrigger=PropertyChanged}" Width="240" Height="42" Margin="10,0,0,0" FontSize="20"></TextBox>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Margin="122,30,0,0" Visibility="Hidden">
- <TextBlock Text="Count:" FontSize="20" Margin="8,10,0,0"></TextBlock>
- <TextBox Text="{Binding WaferCount,UpdateSourceTrigger=PropertyChanged}" Tag="Number" Width="240" Height="42" Margin="10,0,0,0" FontSize="20" IsEnabled="False"></TextBox>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Margin="45,30,0,0" Visibility="Hidden">
- <Button Content="Edit Specified Map" FontSize="20" Height="45" Margin="8,0,0,0">
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="EditMap">
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- <TextBox Text="{Binding SlotMap,UpdateSourceTrigger=PropertyChanged}" Tag="Number" Width="240" Height="42" Margin="10,0,0,0" FontSize="16" IsEnabled="False"/>
- <RadioButton Content="Exist" FontSize="20" Width="60" Margin="10,0,0,0" GroupName="map" IsChecked="{Binding IsExistChecked}"/>
- <RadioButton Content="None" FontSize="20" Width="60" Margin="5,0,0,0" GroupName="map" IsChecked="{Binding IsNoneChecked}"/>
- </StackPanel>
- </StackPanel>
- <StackPanel Grid.Row="1" Orientation="Horizontal">
- <Button Content="Close" Margin="20,-10,20,0" Width="130" Height="45">
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="ClosedCmd">
- <cal:Parameter Value="Close"/>
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- <Button Content="Accept" Margin="460,-10,20,0" Width="130" Height="45">
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="AcceptCmd">
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- </StackPanel>
- </Grid>
- </UserControl>
|