1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <UserControl x:Class="EfemUI.Controls.LoadPortControl"
- 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:EfemUI.Controls"
- xmlns:style="clr-namespace:MECF.Framework.UI.Core.Style;assembly=MECF.Framework.UI.Core"
- xmlns:common="clr-namespace:Aitex.Sorter.UI.Controls.Common;assembly=Aitex.Sorter.UI"
- xmlns:Common="clr-namespace:Aitex.Sorter.Common;assembly=Aitex.Sorter.Common"
- mc:Ignorable="d"
- d:DesignHeight="300" d:DesignWidth="1000">
- <Grid>
- <style:HeaderPanel Grid.Row="0" Width="400" Height="220" HorizontalAlignment="left" VerticalAlignment="Top" Header="{Binding DeviceName}" Margin="10,10,0,0">
- <Grid style:GridHelper.Column0="LightBlue" style:GridHelper.Column1="Transparent" style:GridHelper.Column2="LightBlue" style:GridHelper.Column3="Transparent">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="250" />
- <ColumnDefinition Width="150" />
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="*" />
- <RowDefinition Height="*" />
- <RowDefinition Height="*" />
- <RowDefinition Height="*" />
- <RowDefinition Height="*" />
- <RowDefinition Height="*" />
- </Grid.RowDefinitions>
- <Label Grid.Row="0" Grid.Column="0" Content="Not In Position 3 Inch" VerticalAlignment="Center" />
- <common:LED Grid.Row="0" Grid.Column="1" On="{Binding IsNotPresent3}" HorizontalContentAlignment="Center" />
- <Label Grid.Row="1" Grid.Column="0" Content="Not In Position 4 Inch" />
- <common:LED Grid.Row="1" Grid.Column="1" On="{Binding IsNotPresent4}" />
- <Label Grid.Row="2" Grid.Column="0" Content="Not In Position 6 Inch" />
- <common:LED Grid.Row="2" Grid.Column="1" On="{Binding IsNotPresent6}" />
- <Label Grid.Row="3" Grid.Column="0" Content="No Protrude" />
- <common:LED Grid.Row="3" Grid.Column="1" On="{Binding IsNotProtrude}" />
- <Label Grid.Row="4" Grid.Column="0" Content="CassetteState" />
- <TextBlock Grid.Row="4" Grid.Column="1" Text="{Binding CassetteState}" />
- <Label Grid.Row="5" Grid.Column="0" Content="Home" />
-
- <Button Grid.Row="5" Grid.Column="1" Content="Home" Height="25" Margin="10,5,12,0" Width="Auto" />
- </Grid>
- </style:HeaderPanel>
-
- </Grid>
- </UserControl>
|