PipeModel.xaml
1.17 KB
<UserControl x:Class="HHECS.WinCommon.Controls.PipeModel"
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:HHECS.WinCommon.Controls"
mc:Ignorable="d"
d:DesignHeight="200" d:DesignWidth="200">
<Grid>
<Border Background="AliceBlue" BorderBrush="Black" BorderThickness="2">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="20"/>
<RowDefinition Height="*"/>
<RowDefinition Height="30"/>
</Grid.RowDefinitions>
<TextBlock x:Name="txt_Num" Foreground="Black" FontWeight="Bold" Background="White" />
<TextBlock Text="11112121213" TextWrapping="Wrap" Grid.Row="1">
</TextBlock>
<TextBlock Text="1120" TextWrapping="Wrap" Grid.Row="2"></TextBlock>
</Grid>
</Border>
</Grid>
</UserControl>