12345678910111213141516171819202122 |
- <UserControl x:Class="NEIntelligentControl2.Views.Infos.PointTag"
- 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:NEIntelligentControl2.Views.Infos"
- mc:Ignorable="d"
- d:DesignHeight="30" d:DesignWidth="206" Margin="12,0" Height="35">
- <Border BorderThickness="1" BorderBrush="#FF4A4A4A" SnapsToDevicePixels="True" MouseLeftButtonDown="Border_MouseLeftButtonDown">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="Auto"/>
- <ColumnDefinition/>
- <ColumnDefinition Width="Auto"/>
- </Grid.ColumnDefinitions>
- <TextBlock HorizontalAlignment="Left" x:Name="_TBName" VerticalAlignment="Center" FontSize="14" Margin="3"/>
- <TextBlock Grid.Column="1" HorizontalAlignment="Right" x:Name="_TBValue" VerticalAlignment="Center" FontSize="14" Margin="5,3,10,3"/>
- <TextBlock Grid.Column="2" x:Name="_TBUnit" VerticalAlignment="Center" FontSize="14" Margin="3"/>
- </Grid>
- </Border>
- </UserControl>
|