private void tsBaoCaoDoanhSoNgay_Click(object sender, EventArgs e) { frmBaoCaoDoanhSoNgay frm = new frmBaoCaoDoanhSoNgay(); frm.MdiParent = this; frm.Show(); }
private void TileLapBaoCaoNgay_ItemClick(object sender, TileItemEventArgs e) { pnZone.Controls.Clear(); frmBaoCaoDoanhSoNgay frmDoanhSoNgay = new frmBaoCaoDoanhSoNgay(); frmDoanhSoNgay.TopLevel = false; pnZone.Controls.Add(frmDoanhSoNgay); frmDoanhSoNgay.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; frmDoanhSoNgay.AutoScroll = true; frmDoanhSoNgay.Dock = DockStyle.Fill; frmDoanhSoNgay.Show(); }