您好我正在尝试创建一个文本块,他们应该关注事件以强调文本并在您失去焦点时添加。 这可能吗?
答案 0 :(得分:0)
虽然我不确定Silverlight是否支持这种功能,但这就是你在WPF中的做法:
<xxx.Resources>
<Style x:Key="HoverUnderline" TargetType="TextBlock">
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="TextDecorations" Value="Underline"/>
</Trigger>
</Style.Triggers>
</Style>
...
<TextBlock Style="{StaticResource HoverUnderline}"
Content="Point at me to underline."/>
(对您的问题的另一种解释:使用IsFocused
代替IsMouseOver
。这是一种更奇怪的解释,因为通常文本块无法获得焦点。)