使用MethodToValueConverter时更新数据绑定
本文关键字:数据绑定 更新 MethodToValueConverter 使用 | 更新日期: 2023-09-27 18:24:00
我有一个数据绑定,在这个答案中使用MethodToValueConverter
。这非常有效,但在方法的结果发生变化后,我很难强制更新视图。这有点难以解释,所以希望一些代码剪辑会有所帮助。
类对象
[DataContract]
public class RetentionBankItem : INotifyPropertyChanged
{
#region Private Properties
public event PropertyChangedEventHandler PropertyChanged;
private float _rbRevisedRateLoad;
private float _rbCurrentRateLoad;
#endregion
[DataMember]
public float rbRevisedRateLoad
{
get
{
return _rbRevisedRateLoad;
}
set
{
PropertyChanged.ChangeAndNotify(ref _rbRevisedRateLoad, value, () => rbRevisedRateLoad);
OnPropertyChanged("RateLoadDifference");
}
}
[DataMember]
public float rbCurrentRateLoad
{
get
{
return _rbCurrentRateLoad;
}
set
{
PropertyChanged.ChangeAndNotify(ref _rbCurrentRateLoad, value, () => rbCurrentRateLoad);
OnPropertyChanged("RateLoadDifference");
}
}
public float RateLoadDifference()
{
if (rbCurrentRateLoad != 0)
{
return rbRevisedRateLoad / rbCurrentRateLoad;
}
return 0;
}
}
需要注意的是,在以下代码中,RetentionBank
属于List<RetentionBankItem>
类型
我的装订看起来是这样的:
<ItemsControl ItemsSource="{Binding RetentionBank}">
<ItemsControl.ItemTemplate>
<DataTemplate>
<TextBox Text="{Binding rbRevisedRateLoad, Mode=TwoWay}"
Grid.Row="2"
Grid.Column="0" />
<TextBox Text="{Binding rbCurrentRateLoad, Mode=TwoWay}"
Grid.Row="2"
Grid.Column="1" />
<TextBox Text="{Binding Path=., Converter={StaticResource ConverterMethodToValue}, ConverterParameter='RateLoadDifference', Mode=OneWay}"
Grid.Row="2"
Grid.Column="2" />
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
当前和修订的费率负载设置正确,但在设置之后,RateLoadDifference永远不会被调用来更新。我认为需要调用类对象本身来更新,因为这是文本框实际绑定的内容(不一定是方法本身),但我不确定如何做到这一点,也不确定这是否是正确的方法。任何帮助或建议都将不胜感激。谢谢
将RateLoadDifference更改为属性:
public float RateLoadDifference
{
get
{
if (rbCurrentRateLoad != 0)
{
return rbRevisedRateLoad / rbCurrentRateLoad;
}
return 0;
}
}
然后将绑定更改为
Binding="{Binding Path=RateLoadDifference, Mode=OneWay}"