鼠标悬停时使用VSM更改TextBlock前景?

时间:2012-04-16 10:04:37

标签: silverlight-4.0 expression-blend-4

任何人都知道如何使用VSM将文本块文本颜色从“红色”更改为“蓝色”?文本块是否具有像Button,TextBox等的temeplate?等等?感谢您的帮助,期待您的回复...

1 个答案:

答案 0 :(得分: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>