0

我在 datagird 的 CellEditingTemplate 中有一个 TextBox。当我更改它的值但它没有反映到新值时。

<TextBox Text="{Binding Path=Firstname}" Grid.Column="1" Width="80"  ></TextBox>

我怎样才能做到这一点?

4

1 回答 1

1

您必须使用 Mode=TwoWay 并INotifyPropertyChanged与 Firstname 一起使用。

<TextBox Text="{Binding Path=Firstname,Mode=TwoWay}" Grid.Column="1" Width="80"/>
于 2012-09-14T11:01:23.790 回答