如何改变文本块背景时,点击文本块在wpf?



我正在做一个Wpf项目。我想改变textBlock (textblockA)的背景颜色当我点击它的时候。我参考了这篇文章。但问题是,我想点击另一个textBlock (textBlockB)然后textBlockB改变颜色和textBlockA返回到相同的颜色。(我的英语有点差)这是我的Xaml代码。

<UserControl x:Class="StandApp.Views.SettingView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
xmlns:local="clr-namespace:StandApp.Views"
mc:Ignorable="d" 
d:DesignHeight="450" d:DesignWidth="800">
<UserControl.Resources>
<Style TargetType="TextBlock">
<Style.Triggers>
<EventTrigger RoutedEvent="MouseDown">
<BeginStoryboard>
<Storyboard>
<ColorAnimation Storyboard.TargetProperty="Background.Color" From="White" To="Yellow" Duration="0:0:0.1"></ColorAnimation>
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</Style.Triggers>
</Style>
</UserControl.Resources>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="125*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="60*"/>
</Grid.RowDefinitions>
<TextBlock Text="textBlockA" Background="White"></TextBlock>
<TextBlock Text="textBlockB" Background="White"></TextBlock>
</Grid>
</UserControl>

我是Wpf的初学者,希望大家能帮助我。谢谢!

根据我的理解,当你点击时,意思是当聚焦在文本框上时,背景应该是红色的

<Style x:Key="RedTextBoxStyle" TargetType="{x:Type TextBox}">
<Style.Triggers>
<Trigger Property="IsFocused" Value="true">
<Setter Property="Background" Value="Red" />
</Trigger>
</Style.Triggers>
</Style>
<TextBox Style="{StaticResource RedTextBoxStyle}"  />

当你点击文本框时,当IsFocused为true时,它将被聚焦

注意:TargetType ="TextBlock"如果你像这样使用。该样式将应用于该范围内的所有TextBlock,因此给它一个键并在TextBox上使用,这是该样式所必需的

相关内容

  • 没有找到相关文章

最新更新