public void refresh(bool Data) { if (Data) // Nếu vừa sửa xong { // Lấy lại đối tượng mới var db = new MANAGEMENT_STORE_Entities(); product = db.Detail_Product.SingleOrDefault(x => x.ID_Product == product.ID_Product); // Làm mới danh sách ở trang trước (delegate 2 cấp) if (RefreshProductList != null) { RefreshProductList.Invoke(true); } } // Đưa thông tin lên UI txbProductName.Text = product.NameProduct; txbProductId.Text = product.ID_Product; txbOriginalPrice.Text = product.Original_Price.ToString(); txbSupplier.Text = manage.GetSupplier(product); txbDateImport.Text = manage.GetDateImport(product).ToString(); txbCurrAmount.Text = product.Amount_Current.ToString() + "/" + manage.GetinitialAmount(product).ToString(); // editProductType.Text = product.ProductType; if (product.Description_Pro != null) { txbDescri.Text = product.Description_Pro; } if (product.Image_Path != null) { BitmapImage source = new BitmapImage(new Uri(product.Image_Path)); imgProduct.Source = source; } // Lấy tên loại sản phẩm và các hóa đơn liên quan Thread thread = new Thread(delegate() { try { var db = new MANAGEMENT_STORE_Entities(); string productTypeName = db.Type_product.Find(product.ID_TypeProduct).Type_Product1; // Lấy tên loại sản phẩm ObservableCollection <Bills> bills = manage.Load_Bill(product.ID_Product); // Lấy danh sách hóa đơn // Đưa lên UI Dispatcher.Invoke(() => { txbProductType.Text = productTypeName; listBill.ItemsSource = bills; // Hiện thông báo nếu không có Bill nào if (bills.Count == 0) { noBillAnnounce.Visibility = Visibility.Visible; } }); } catch (Exception e) { MessageBox.Show(e.ToString()); } }); thread.Start(); }