1

我正在为数据网格使用第三方控件。我已经在模型类中实现了属性更改事件,并且在我使用时它正在工作

 Text="{Binding itemQty, UpdateSourceTrigger=propertychanged}"

它甚至在我的数据源中进行了更新,但是我在这里有另一个文本框,尽管项目源已使用新值进行了更新,但数据并未从项目源中检索。我想显示具有第一个文本框的属性更改事件的数据,并且行是动态的,所以我不能直接调用它们。如果我刷新它正在显示的数据源,但我不能使用该过程,因为当项目很多时,这是一个耗时的过程。

4

1 回答 1

2

我想显示具有第一个文本框的属性更改事件的数据,并且行是动态的

问题是你还没有Mode=TwoWay为你的Text财产设置。并UpdateSourceTrigger定义指示绑定源何时由其绑定目标在双向绑定中更新的常量。

<TextBox Text="{Binding Info,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"/>
<TextBox Text="{Binding Info}"/>

背后的代码

private string info { get; set; }
public string Info
{
    get { return info; }
    set
    {
        info = value;
        OnPropertyChanged();
    }
}

public event PropertyChangedEventHandler PropertyChanged;

private void OnPropertyChanged([CallerMemberName] string properName = null)
{
    if(PropertyChanged != null)
    this.PropertyChanged(this,new PropertyChangedEventArgs(properName));
}
于 2018-06-06T05:51:34.283 回答