标签:ext har resources block ttext width hint enter res
<TextBox HorizontalAlignment="Center" VerticalAlignment="Center" Width="100"> <TextBox.Resources> <VisualBrush x:Key="HintText" TileMode="None" Opacity="0.5" Stretch="None" AlignmentX="Left"> <VisualBrush.Visual> <TextBlock FontStyle="Italic" Text="提示文字"/> </VisualBrush.Visual> </VisualBrush> </TextBox.Resources> <TextBox.Style> <Style TargetType="TextBox"> <Style.Triggers> <Trigger Property="Text" Value="{x:Null}"> <Setter Property="Background" Value="{StaticResource HintText}"/> </Trigger> <Trigger Property="Text" Value=""> <Setter Property="Background" Value="{StaticResource HintText}"/> </Trigger> </Style.Triggers> </Style> </TextBox.Style> </TextBox>
标签:ext har resources block ttext width hint enter res
原文地址:http://www.cnblogs.com/by-lhc/p/7213710.html