一个具有ReadOnly TotalPrice属性的Order类,该属性从该类的其他属性进行calcutaltes。通过ObservableCollection我绑定到DataGrid。代码如下。
订单类
public class Order
{
public String Name { get; set; }
public Double Price { get; set; }
public Int32 Quantity { get; set; }
public Double TotalPrice { get { return Price * Quantity; } }
}
DataGrid的XAML代码
<!--DataGrid-->
<my:DataGrid AutoGenerateColumns="False" Name="dgOrders" ItemsSource="{Binding}">
<my:DataGrid.Columns>
<my:DataGridTextColumn Binding="{Binding Name}" Header="Name" IsReadOnly="True" />
<my:DataGridTextColumn Binding="{Binding Price}" Header="Price" IsReadOnly="True" />
<my:DataGridTextColumn Binding="{Binding Quantity}" Header="Quantity" />
<my:DataGridTextColumn Binding="{Binding Total, Mode=OneWay}" Header="Total" IsReadOnly="True" />
</my:DataGrid.Columns>
</my:DataGrid>
将类绑定到DataGrid
ObservableCollection<Order> Orders = new ObservableCollection<Order>();
Orders.Add(new Order() { Name = "Book", Quantity = 1, Price = 13 });
Orders.Add(new Order() { Name = "Pencil", Quantity = 2, Price = 4 });
Orders.Add(new Order() { Name = "Pen", Quantity = 1, Price = 2 });
dgOrders.DataContext = Orders;
现在,当用户更新DataGrid TotalPrice列上的Quantity列时,应该更新TotalPrice属性更新自身。我的消费是因为TotalPrice没有更新,所以它不会像其他属性那样产生通知,因此datagrid不会更新。
感谢您提出任何意见。
编辑:让我澄清一下我的问题。
我需要一种通知系统,告诉UI在readonly属性因内部更改而发生更改时自行更新。