Sic.Framework/MECF.Framework.UI.Core/Control/GasSplitterControl.xaml

14 lines
1.1 KiB
Plaintext
Raw Normal View History

2023-04-13 11:51:03 +08:00
<UserControl x:Class="Aitex.Core.UI.Control.GasSplitterControl"
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"
mc:Ignorable="d" Height="24" Width="45" BorderThickness="1" x:Name="self">
<Grid MouseLeftButtonUp="Grid_MouseLeftButtonUp" Cursor="Hand" Opacity="1" MouseEnter="Grid_MouseEnter">
<Border Background="Transparent" x:Name="bdRectangle" BorderThickness="1">
<Rectangle Style="{x:Null}" RadiusX="2" RadiusY="2" Name="rectBkground" Stroke="Gray" Margin="1" Opacity="1" Fill="Green" StrokeThickness="1"/>
</Border>
<Label Content="{Binding ElementName=self, Path=DeviceData.FeedBack}" VerticalContentAlignment="Center" ContentStringFormat="F1" FontFamily="Arial,SimSun" FontSize="9" HorizontalContentAlignment="Center" x:Name="labelValue" Margin="0,-2,-2,-2" Foreground="LightYellow" />
</Grid>
</UserControl>