| 12345678910111213141516171819 |
- <UserControl x:Class="SAGA.UserControls.WPF.UnderLineTextBlock"
- 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:SAGA.UserControls.WPF"
- mc:Ignorable="d"
- d:DesignHeight="24" d:DesignWidth="300">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="*"/>
- <RowDefinition Height="1"/>
- </Grid.RowDefinitions>
- <TextBlock Grid.Row="0" Text="{Binding Path=Text,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" VerticalAlignment="Center"
- Foreground="LightGray"></TextBlock>
- <Border Grid.Row="1" BorderThickness="1" BorderBrush="Black"></Border>
-
- </Grid>
- </UserControl>
|