123456789101112131415161718192021222324252627282930313233343536 |
- <UserControl x:Class="Aitex.Core.UI.Control.AnalogControl4Jet"
- 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:c="clr-namespace:CalcBinding;assembly=CalcBinding"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:converters="clr-namespace:MECF.Framework.UI.Core.Converters"
- mc:Ignorable="d" Height="36" Width="38" BorderThickness="1" x:Name="Self">
- <UserControl.Resources>
- <converters:BoolVisibilityConverter x:Key="boolVisibilityConverter"/>
- </UserControl.Resources>
- <Grid MouseLeftButtonUp="Grid_MouseLeftButtonUp" TouchUp="Grid_TouchUp" Cursor="Hand" Opacity="1" MouseEnter="Grid_MouseEnter">
- <Grid.RowDefinitions>
- <RowDefinition Height="18"></RowDefinition>
- <RowDefinition Height="18"></RowDefinition>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="38"></ColumnDefinition>
- </Grid.ColumnDefinitions>
- <Border x:Name="topBorder" Grid.Row="0" Grid.ColumnSpan="2" BorderBrush="Black" BorderThickness="1,1,1,1" Margin="0,0,2,0">
- <Grid >
- <Rectangle Name="rectSetPoint" />
- <Label HorizontalContentAlignment="Center" Padding="0,2,0,0" Content="0.0" FontFamily="Arial,SimSun" FontWeight="Bold" FontSize="10" x:Name="labelSetPoint" Foreground="Black" />
- </Grid>
- </Border>
- <Border x:Name="downBorder" Grid.Row="1" Grid.Column="0" BorderBrush="Black" BorderThickness="1,0,1,1" Margin="0,0,2,2">
- <Grid >
- <Border x:Name="bdRectangle">
- <Rectangle Name="rectBkground" />
- </Border>
- <TextBlock FontFamily="Arial,SimSun" FontSize="10" Text="{Binding ElementName=Self, Path=ShowValue ,Mode=OneWay, UpdateSourceTrigger=PropertyChanged}" VerticalAlignment="Center" HorizontalAlignment="Center" x:Name="labelValue1" FontWeight="Bold" Foreground="Black"/>
- </Grid>
- </Border>
- </Grid>
- </UserControl>
|