1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <UserControl x:Class="FurnaceUI.Views.Operations.BoatWaferNoActionView"
- 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:global="clr-namespace:FurnaceUI"
- xmlns:local="clr-namespace:FurnaceUI.Views.Operations"
- xmlns:ctrl="http://OpenSEMI.Ctrlib.com/presentation"
- xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
- xmlns:cal="http://www.caliburn.org"
- mc:Ignorable="d"
- Height="640" Width="995">
- <Canvas>
- <ListBox ItemsSource="{Binding ListBoatWafers}" Canvas.Left="3">
- <ListBox.ItemsPanel>
- <ItemsPanelTemplate>
- <StackPanel Orientation="Horizontal"></StackPanel>
- </ItemsPanelTemplate>
- </ListBox.ItemsPanel>
- <ListBox.ItemTemplate>
- <DataTemplate>
- <ListBox ItemsSource="{Binding}">
- <ListBox.ItemTemplate>
- <DataTemplate>
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="{Binding Slot}" TextAlignment="Center" VerticalAlignment="Center" MinWidth="25"></TextBlock>
- <Button VerticalAlignment="Center" Width="115" Height="25">
- <Button.Content>
- <TextBlock Margin="-10,0,0,0" Text="{Binding Description}" VerticalAlignment="Center" FontSize="13" />
- </Button.Content>
- </Button>
- </StackPanel>
- </DataTemplate>
- </ListBox.ItemTemplate>
- </ListBox>
- </DataTemplate>
- </ListBox.ItemTemplate>
- </ListBox>
- <Grid Canvas.Left="852" Canvas.Top="503" Width="130" Height="72">
- <Grid.RowDefinitions>
- <RowDefinition Height="*"/>
- <RowDefinition Height="*"/>
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*"/>
- <ColumnDefinition Width="*"/>
- <ColumnDefinition Width="*"/>
- <ColumnDefinition Width="*"/>
- </Grid.ColumnDefinitions>
- <Border Grid.Row="0" Grid.Column="0" Background="#ff68d2c0" BorderBrush="#FF728585" BorderThickness="1">
- <TextBlock Text="P" FontSize="13" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </Border>
- <Border Grid.Row="0" Grid.Column="1" BorderBrush="#FF728585" BorderThickness="1">
- <TextBlock Text="{Binding WaferNumberP}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </Border>
- <Border Grid.Row="0" Grid.Column="2" Background="#ff68d2c0" BorderBrush="#FF728585" BorderThickness="1">
- <TextBlock Text="SD" FontSize="13" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </Border>
- <Border Grid.Row="0" Grid.Column="3" BorderBrush="#FF728585" BorderThickness="1">
- <TextBlock Text="{Binding WaferNumberSD}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </Border>
- <Border Grid.Row="1" Grid.Column="0" Background="#ff68d2c0" BorderBrush="#FF728585" BorderThickness="1">
- <TextBlock Text="M" FontSize="13" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </Border>
- <Border Grid.Row="1" Grid.Column="1" BorderBrush="#FF728585" BorderThickness="1">
- <TextBlock Text="{Binding WaferNumberM}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </Border>
- <Border Grid.Row="1" Grid.Column="2" Background="#ff68d2c0" BorderBrush="#FF728585" BorderThickness="1">
- <TextBlock Text="ED" FontSize="13" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </Border>
- <Border Grid.Row="1" Grid.Column="3" BorderBrush="#FF728585" BorderThickness="1">
- <TextBlock Text="{Binding WaferNumberED}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </Border>
- <Border Grid.Row="2" Grid.Column="0" Background="#ff68d2c0" BorderBrush="#FF728585" BorderThickness="1">
- <TextBlock Text="T" FontSize="13" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </Border>
- <Border Grid.Row="2" Grid.Column="1" BorderBrush="#FF728585" BorderThickness="1">
- <TextBlock Text="{Binding WaferNumberT}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </Border>
- <Border Grid.Row="2" Grid.Column="2" Background="#ff68d2c0" BorderBrush="#FF728585" BorderThickness="1">
- <TextBlock Text="XD" FontSize="13" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </Border>
- <Border Grid.Row="2" Grid.Column="3" BorderBrush="#FF728585" BorderThickness="1">
- <TextBlock Text="{Binding WaferNumberXD}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </Border>
- </Grid>
- <Button Content="Close" Canvas.Left="855" Canvas.Top="578" Width="129" Height="45" Style="{StaticResource CommandButton}">
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="BoatWaferNoActionClose">
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- </Canvas>
- </UserControl>
|