private void btnEditInfor_Click(object sender, EventArgs e) { Form_Infor f = new Form_Infor(); f.ShowDialog(); pnl_TheoDoiDonHang.Visible = false; }
private void bunifuButton6_Click(object sender, EventArgs e) { if (Account.Instance.userName == "") { return; } //open infor Form_Infor frm = new Form_Infor(this) { TopLevel = false, TopMost = true }; this.fpnlChiTiet.Visible = true; this.fpnlProduct.Visible = false; this.pnlChiTietChange.Visible = true; this.fpnlChiTiet.Controls.Clear(); this.fpnlChiTiet.Controls.Add(frm); frm.Show(); }
public ucThongBaoDonHang(ItemThongBao thongbao, Form_Infor parent) { InitializeComponent(); this.parent = parent; _masp = thongbao.Masp; _mahd = thongbao.Madh; if (thongbao.Checknew == 1) { picNew.Visible = false; } this.lblTime.Text = thongbao.ThoiGian.ToString("dd/MM/yyyy"); if (thongbao.TrangThai == "dang giao hang") { lblTitle.Text = "Đơn hàng #" + thongbao.Madh + " đang được giao đến bạn, " + "chuẩn bị số tiền " + Data.Instance.giaFix(thongbao.Tien) + " để thanh toán"; picTrangThai.Image = BuyGear.Properties.Resources.B_danggiao; } else { lblTitle.Text = "Đơn hàng #" + thongbao.Madh + " đã hoàn tất giao đến bạn, " + "tổng giá trị đơn hàng " + Data.Instance.giaFix(thongbao.Tien); picTrangThai.Image = BuyGear.Properties.Resources.B_dagiao; } }