gpt4 book ai didi

如果值保持不变,WPF DataTrigger 不会触发

转载 作者:行者123 更新时间:2023-12-02 05:13:57 29 4
gpt4 key购买 nike

我有一个 WPF 数据触发器,该触发器设置为在值为 true 时触发。

我希望每次该值设置为 true 时都会触发此触发器,即使它之前是 true。不幸的是,它似乎只有在值从 true 更改为 false 或反之亦然时才会触发。我的底层数据模型正在触发 INotifyPropertyChanged 的​​ PropertyChanged 事件,即使该值连续两次设置为 true,但触发器似乎没有接收到此事件。

无论绑定(bind)值是否更改,是否都可以使触发器运行?

你们中的一些人要求提供代码,所以这里是。有趣的是,每次都会调用转换器。该问题更具体地涉及运行动画。

更新如果我更改代码以将值重置为 false,然后再次返回 true,它会触发动画。显然这并不理想,并且不会使代码易于阅读。我希望有更好的方法来做到这一点。

非常感谢任何帮助。

WPF代码

<Grid>
<Grid.Resources>
<Storyboard x:Key="AnimateCellBlue">
<ColorAnimation Storyboard.TargetProperty="Background.Color" From="Transparent" To="Blue" Duration="0:0:0.1" AutoReverse="True" RepeatBehavior="1x" />
</Storyboard>
</Grid.Resources>
<TextBox Name="txtBox" Text="{Binding DataContext.DisplayText, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=Window}}">
<TextBox.Style>
<Style TargetType="TextBox">
<Style.Triggers>
<DataTrigger Binding="{Binding DataContext.IsTrue, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=Window}}" Value="True">
<DataTrigger.EnterActions>
<BeginStoryboard Name="BidSizeUpStoryB" Storyboard="{StaticResource AnimateCellBlue}" />
</DataTrigger.EnterActions>
</DataTrigger>
</Style.Triggers>
</Style>
</TextBox.Style>
</TextBox>
</Grid>

背后代码:-

public partial class MainWindow : Window
{
private DataItem _dataItem;
private DispatcherTimer _dispatcherTimer;

public MainWindow()
{
InitializeComponent();

_dataItem = new DataItem();
_dataItem.DisplayText = "Testing";
_dataItem.IsTrue = true;

this.DataContext = _dataItem;

_dispatcherTimer = new DispatcherTimer(TimeSpan.FromSeconds(1), DispatcherPriority.Normal, TimerCallbackHandler, Dispatcher);

}

private void TimerCallbackHandler(object s, EventArgs args)
{
Console.WriteLine("In Timer");
_dataItem.IsTrue = true;
_dataItem.DisplayText = "Timer " + DateTime.Now.Ticks;
}
}

数据项:-

public class DataItem : INotifyPropertyChanged
{
private bool _isTrue;
private string _displayText;

public bool IsTrue
{
get { return _isTrue; }
set
{
_isTrue = value;
NotifyPropertyChanged("IsTrue");
}
}

public string DisplayText
{
get
{
return _displayText;
}
set
{
_displayText = value;
NotifyPropertyChanged("DisplayText");
}
}

#region INotifyPropertyChanged Members

public event PropertyChangedEventHandler PropertyChanged;

#endregion

private void NotifyPropertyChanged(string info)
{
if (PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs(info));
}
}

最佳答案

无论设置的值如何,触发器都会触发。每当为与触发器绑定(bind)的属性引发 PropertyChanged 事件时,都会调用触发器。这是我已经验证过的示例 -

<TextBox>
<TextBox.Style>
<Style TargetType="TextBox">
<Style.Triggers>
<DataTrigger Binding="{Binding DataContext.IsTrue, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=Window},
Converter={StaticResource MyConverter}}" Value="True">
<Setter Property="Background" Value="Red"/>
</DataTrigger>
</Style.Triggers>
</Style>
</TextBox.Style>
</TextBox>

我在转换器上放置了断点,每当我为属性 IsTrue 引发 PropertyChanged 事件时就会调用它。您的代码中一定存在其他问题。您能否显示一下您遇到此问题的代码?

关于如果值保持不变,WPF DataTrigger 不会触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7729993/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com