我在更新对文本箱具有约束力的法典中的财产价值方面存在问题(文本箱没有显示新的价值)。
它通常在没有问题的情况下工作,但在这种情况下,来源类别属于单独组组(不知道它是否发挥了任何作用)。
- If I type in textbox the value will be updated in the code
- When I change the property value directly in code textbox is not displaying new value.
- After changing the value in textbox one more time the previously set value (in code) is overwritten (so binding is still working).
此外,我还检查了发生财产抵押事件的情况,这是每次改变之后发生的。
它为什么不工作? 属于相应的约束和源类别。
文本Box=“iBled Path=Description, Mode=TwoWay}”
[DataContract]
public class Source : INotifyPropertyChanged
{
private String _Description;
[DataMember]
public String Description
{
get { return _Description; }
set
{
if (_Description == value)
return;
_Description = value;
OnPropertyChanged("Description");
}
}
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged(string propertyName)
{
PropertyChangedEventHandler handler = this.PropertyChanged;
if (handler != null)
{
var e = new PropertyChangedEventArgs(propertyName);
handler(this, e);
}
}
}
我把这个问题显然与不同的集会无关。 我在确定财产价值方面有ug。