VSMを使用してテキストブロックのテキストの色を「赤」から「青」に変更する方法を知っている人はいますか?テキストブロックにはボタンやテキストボックスなどのテメプレートがありますか?助けてくれてありがとう、そしてあなたの返事を楽しみにしています...
質問する
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 に答える