Example #1
0
 private void Btn_HuyClick(object sender, EventArgs e)
 {
     ClearTTVe();
     Grbox_TTVePhim.Hide();
     Btn_HienTatCa.Enabled = true;
     Btn_Filter.Enabled    = true;
     LoadPhim();
 }
Example #2
0
 //Bitmap Bmp_TTVe;
 public DatVe()
 {
     InitializeComponent();
     this.Visible = false;
     Grbox_Filter.Focus();
     Grbox_TTVePhim.Hide();
     LoadPhim();
 }
Example #3
0
 private void ClearTTVe()
 {
     Grbox_TTVePhim.Show();
     Label_TenPhim.Text    = "";
     Label_TenPhim.Name    = "";
     Label_PhongChieu.Text = "";
     Label_NgayChieu.Text  = "";
     Label_GioChieu.Text   = "";
     Label_ThoiLuong.Text  = "";
     Label_TongTien.Text   = "";
     PnFlow_GheDaDat.Controls.Clear();
 }
Example #4
0
 private void HienThiThongTinVe(Phim t, SuatChieu s)
 {
     Grbox_TTVePhim.Show();
     Label_TenPhim.Text    = t.TenPhim.Substring(0, (t.TenPhim.Length > 14) ? 14 : t.TenPhim.Length);
     Label_TenPhim.Name    = t.MaPhim;
     Label_PhongChieu.Text = s.MaPhong;
     Label_NgayChieu.Text  = s.Ngay + "/" + s.Thang + "/" + s.Nam;
     Label_GioChieu.Text   = s.Gio + ":" + s.Phut;
     Label_ThoiLuong.Text  = t.ThoiLuong.ToString() + " phút";
     Label_TongTien.Text   = "0";
     PnFlow_GheDaDat.Name  = s.MaSuatChieu;
     PnFlow_GheDaDat.Controls.Clear();
 }
Example #5
0
        private void Btn_DatVeClick(object sender, EventArgs e)
        {
            HoaDon hd = GetHoaDonForSave();

            if (hd == null)
            {
                MessageBox.Show("Bạn ơi chơi đồ à ???\n Chưa chọn ghế kìa", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                return;
            }
            MyResources.MyRapPhim.ListHoaDon.Add(hd);
            if (MessageBox.Show("Thêm hóa đơn thành công!!!\n" +
                                "Có muốn in hóa đơn ???", "In hóa đơn",
                                MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
            {
                PrintHoaDon();
            }
            ClearTTVe();
            Grbox_TTVePhim.Hide();
            Btn_HienTatCa.Enabled = true;
            Btn_Filter.Enabled    = true;
            LoadPhim();
        }