ModuleControl.xaml 1.6 KB

12345678910111213141516171819202122232425262728
  1. <UserControl x:Class="MECF.Framework.UI.Core.DeviceControl.ModuleControl"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:MECF.Framework.UI.Core.DeviceControl"
  7. xmlns:converters="clr-namespace:Aitex.Core.UI.Converters"
  8. mc:Ignorable="d" x:Name="self"
  9. d:DesignHeight="450" d:DesignWidth="800">
  10. <UserControl.Resources>
  11. <converters:bool2VisibilityConverter x:Key="visibilityConverter" />
  12. </UserControl.Resources>
  13. <Grid Opacity="1" >
  14. <Border Background="Transparent" x:Name="bdRectangle" BorderThickness="1">
  15. <Rectangle RadiusX="2" RadiusY="2" Name="rectBkground" Stroke="#373737" Margin="1" Opacity="1" Fill="CadetBlue" StrokeThickness="1"/>
  16. </Border>
  17. <Ellipse Visibility="{Binding ElementName=self, Path=HasWafer, Converter={StaticResource visibilityConverter}}" HorizontalAlignment="Center" VerticalAlignment="Center" Stroke="Gray" StrokeThickness="2" Width="35" Height="35"
  18. Fill="DarkGray" x:Name="sensor" Style="{x:Null}"/>
  19. <Label Content="{Binding ElementName=self, Path=ModuleName}" ContentStringFormat="F0" FontFamily="Verdana" FontSize="9" HorizontalContentAlignment="Center" x:Name="labelValue" Margin="0,-2,-2,-2" VerticalContentAlignment="Center" Foreground="Yellow" />
  20. </Grid>
  21. </UserControl>