我有以下界面:
当一个项目添加到 中DataGrid
时,Total column
会根据(价格 * 数量)进行更新,并且总计TextBox
也将具有添加的所有行的总计。
但是,当我更改一行的数量时,会Total column
更新,但总数TextBox
不会。
这是我的代码,在此先感谢。
public partial class pgCheckout : Page {
ObservableCollection<SaleItem> items = new ObservableCollection<SaleItem>();
public pgCheckout() {
InitializeComponent();
dgItems.ItemsSource = items;
dgItems.Loaded += SetMinWidths;
items.CollectionChanged += setTotal;
}
public void setTotal(object source, EventArgs e) {
decimal total = 0;
foreach(SaleItem i in items) {
total += i.Total;
}
txtTotal.Text = total.ToString();
}
public void SetMinWidths(object source, EventArgs e) {
foreach (var column in dgItems.Columns) {
if (column.DisplayIndex != 0) {
column.MinWidth = column.ActualWidth;
column.Width = new DataGridLength(1, DataGridLengthUnitType.Star);
}
}
}
private void btnRemove_Click(object sender, RoutedEventArgs e) {
items.RemoveAt(dgItems.SelectedIndex);
}
private void btnAdd_Click(object sender, RoutedEventArgs e) {
bool exist = false;
foreach (SaleItem i in items) {
if (i.ItemID.Equals(txtItemID.Text))
exist = true;
}
if (exist) {
lblErr.Content = "Item already exist";
txtItemID.Text = "";
}
else {
using (var db = new PoSEntities()) {
var query = from i in db.Items
where i.ItemID.Equals(txtItemID.Text.Trim())
select i;
var itm = query.FirstOrDefault();
if (itm == null) {
lblErr.Content = "Invalid Item";
txtItemID.Text = "";
}
else {
txtItemID.Text = "";
lblErr.Content = "";
items.Add(new SaleItem() {
Num = items.Count + 1,
ItemID = itm.ItemID,
Name = itm.Name,
Price = decimal.Round(itm.Price, 2, MidpointRounding.AwayFromZero),
Quantity = 1,
});
}
}
}
}
private void txtItemID_KeyUp(object sender, KeyEventArgs e) {
if (e.Key == System.Windows.Input.Key.Enter) {
btnAdd_Click(txtItemID, e);
}
}
}
class SaleItem : INotifyPropertyChanged {
public int Num { get; set; }
public string ItemID { get; set; }
public string Name { get; set; }
private decimal price;
public decimal Price {
get { return price; }
set {
this.price = value;
OnPropertyChanged("Total");
}
}
public int quantity;
public int Quantity {
get { return quantity; }
set {
this.quantity = value;
OnPropertyChanged("Total");
}
}
public decimal Total {
get { return decimal.Round(Price * Quantity, 2, MidpointRounding.AwayFromZero); }
}
public event PropertyChangedEventHandler PropertyChanged;
private void OnPropertyChanged(string propertyName) {
var handler = PropertyChanged;
if (handler != null) {
handler(this, new PropertyChangedEventArgs(propertyName));
}
}
}