任何人都知道我如何使用 VSM 将文本块文本颜色从“红色”更改为“蓝色”?文本块是否有像 Button、TextBox 等模板?感谢您的帮助,期待您的回复...
问问题
1168 次
1 回答
1
您可以使用文本框并在鼠标悬停时设置颜色背景
<TextBox TextWrapping="Wrap" Background="#FFBA2C2C" Height="20">
<TextBox.Template>
<ControlTemplate>
<StackPanel Orientation="Horizontal">
<VisualStateManager.VisualStateGroups>
<VisualStateGroup x:Name="CommonStates">
<VisualState x:Name="Normal"/>
<VisualState x:Name="MouseOver">
<Storyboard>
<ColorAnimation To="Red" Storyboard.TargetProperty="(TextBlock.Foreground).(SolidColorBrush.Color)" Storyboard.TargetName="textBlock" d:IsOptimized="True" Duration="0"/>
</Storyboard>
</VisualState>
</VisualStateGroup>
</VisualStateManager.VisualStateGroups>
<TextBlock x:Name="textBlock" Text="Click Me"/>
</StackPanel>
</ControlTemplate>
</TextBox.Template>
</TextBox>
于 2012-04-17T13:37:35.543 回答