1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <UserControl x:Class="MECF.Framework.Simulator.Core.LoadPorts.FAClientView"
- 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:MECF.Framework.Simulator.Core.Aligners"
- xmlns:deviceControl="clr-namespace:MECF.Framework.UI.Core.DeviceControl;assembly=MECF.Framework.UI.Core"
- xmlns:commons="clr-namespace:MECF.Framework.Simulator.Core.Commons"
- Height="900" Width="900">
- <UserControl.Resources>
- <DataTemplate x:Key="DataTemplate1">
- <StackPanel Orientation="Horizontal" Width="200" Height="15">
- <TextBox Text="{Binding Index}"></TextBox>
- <TextBox Text="{Binding State}"></TextBox>
- <Button Content="{Binding State}" Margin="0" Width="100" Height="15" Background="LightBlue" VerticalAlignment="Center"></Button>
- <TextBox Text="{Binding Index}"></TextBox>
- </StackPanel>
- </DataTemplate>
- </UserControl.Resources>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="100"></RowDefinition>
- <RowDefinition Height="350"></RowDefinition>
- <RowDefinition Height="50"></RowDefinition>
- <RowDefinition Height="400"></RowDefinition>
- </Grid.RowDefinitions>
- <commons:SerialPortTitleView Grid.Row="0"></commons:SerialPortTitleView>
- <Canvas Grid.Row="1" Height="350" Width="900">
- <Label Content="{Binding WaferMap}" Width="300" Height="30" HorizontalContentAlignment="Center" Background="LightBlue" BorderThickness="2" Canvas.Left="32" Canvas.Top="50"></Label>
- <Label Content="EVT" Width="78" Height="33" HorizontalContentAlignment="Center" Background="Transparent" BorderThickness="2" Canvas.Left="32" Canvas.Top="194"></Label>
- <TextBox Text="{Binding InfoPadSet,Mode=OneWayToSource}" IsReadOnly ="False" Width="229" Height="38" Margin="0" RenderTransformOrigin="0.471,-0.188" Canvas.Left="141" Canvas.Top="198"></TextBox>
- <Button Content="SendEvent" Width="138" Height="42" Command="{Binding SetInfoPadCommand}"
- Canvas.Left="400" Margin="0" Canvas.Top="194" ></Button>
- <Button Content="Open Port" Width="100" Height="35" Command="{Binding PlaceCommand}" Canvas.Left="10" Margin="0" Canvas.Top="136"></Button>
- <Button Content="Close Port" Width="100" Height="35" Command="{Binding RemoveCommand}" Canvas.Left="141" Margin="0" Canvas.Top="136"></Button>
- <ItemsControl Width="300" Height="300" Background="LightGray" Canvas.Left="576" ItemsSource="{Binding WaferList}" ItemTemplate="{DynamicResource DataTemplate1}" >
- </ItemsControl>
- <Button Content="SetAll" Width="100" Height="35" Command="{Binding SetAllCommand}" Canvas.Left="513" Margin="0" Canvas.Top="305"></Button>
- <Button Content="Random" Width="100" Height="35" Command="{Binding RandomCommand}" Canvas.Left="646" Margin="0" Canvas.Top="305"></Button>
- <Button Content="Clear" Width="100" Height="35" Command="{Binding ClearCommand}" Canvas.Left="766" Margin="0" Canvas.Top="305"></Button>
- </Canvas>
- <StackPanel Grid.Row="2" Orientation="Horizontal" Width="900">
- <Button Content="Clear Log" Width="100" Height="35" Command="{Binding ClearLogCommand}"></Button>
- </StackPanel>
- <DataGrid Grid.Row="3" FontSize="16" AutoGenerateColumns="False" CanUserAddRows="False" CanUserResizeRows="False" CanUserSortColumns="False" ItemsSource="{Binding TransactionLogItems}"
- ScrollViewer.CanContentScroll="True"
- ScrollViewer.VerticalScrollBarVisibility="Auto"
- ScrollViewer.HorizontalScrollBarVisibility="Auto"
- Width="900" Height="380" VerticalAlignment="Top">
- <DataGrid.Columns>
- <DataGridTextColumn Header="Time" Width="160" IsReadOnly="True" Binding="{Binding OccurTime, UpdateSourceTrigger=PropertyChanged}"/>
- <DataGridTextColumn Header="Incoming" Width="350" IsReadOnly="True" Binding="{Binding Incoming, UpdateSourceTrigger=PropertyChanged}">
- <DataGridTextColumn.ElementStyle>
- <Style TargetType="TextBlock">
- <Setter Property="TextWrapping" Value="Wrap"/>
- <Setter Property="Height" Value="auto"/>
- </Style>
- </DataGridTextColumn.ElementStyle>
- </DataGridTextColumn>
- <DataGridTextColumn Header="Outgoing" Width="350" IsReadOnly="True" Binding="{Binding Outgoing, UpdateSourceTrigger=PropertyChanged}">
- <DataGridTextColumn.ElementStyle>
- <Style TargetType="TextBlock">
- <Setter Property="TextWrapping" Value="Wrap"/>
- <Setter Property="Height" Value="auto"/>
- </Style>
- </DataGridTextColumn.ElementStyle>
- </DataGridTextColumn>
- </DataGrid.Columns>
- </DataGrid>
- </Grid>
- </UserControl>
|