123456789101112131415161718192021222324252627282930313233 |
- <UserControl x:Class="CyberX8_Themes.UserControls.WaferHolderBuffer"
- 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:CyberX8_Themes.UserControls"
- xmlns:converters="clr-namespace:CyberX8_Themes.Converters"
- mc:Ignorable="d" x:Name="self"
- d:DesignHeight="100" d:DesignWidth="15">
- <UserControl.Resources>
- <converters:BoolToVisibility3 x:Key="boolToVisibility3"/>
- <converters:IntToColorConverter x:Key="intToColorConvert"/>
- </UserControl.Resources>
- <Grid>
- <Viewbox Stretch="Fill">
- <Canvas Width="15" Height="100" Background="Transparent">
- <Polygon Points="0,0 15,0 15,100 0,100" StrokeThickness="1" Stroke="Black">
- </Polygon>
- <local:WaferHolderControl Visibility="{Binding ElementName=self, Path=WaferHolderVisible, Converter={StaticResource boolToVisibility3}}" Canvas.Top="-10" Width="15" Height="100"
- IsWHEnable="{Binding ElementName=self,Path=IsWHEnable}" HorizontalAlignment="Left" VerticalAlignment="Center"/>
- <Label Content="{Binding ElementName=self, Path=CellName}" Canvas.Left="0" Canvas.Top="60" FontSize="4">
- <Label.RenderTransform>
- <RotateTransform Angle="-90"></RotateTransform>
- </Label.RenderTransform>
- </Label>
-
- </Canvas>
- </Viewbox>
- </Grid>
- </UserControl>
|