我有一个文本框绑定到DataRow中的列。当用户更改文本框文本时,如何在代码隐藏中触发DataRow的setter?
XAML:
<TextBox Text="{Binding NewDataRow[ColumnName1], ValidatesOnExceptions=True, UpdateSourceTrigger=PropertyChanged}"></TextBox>
代码隐藏:
DataRow newImpellerClipRow;
public DataRow NewImpellerClipRow {
get { return newImpellerClipRow; }
set
{
newImpellerClipRow = value;
NotifyPropertyChanged();
SubmitCommand.RaiseCanExecuteChanged();
}
}
由于