public Main() { InitializeComponent(); FormBorderStyle = FormBorderStyle.FixedDialog; WindowState = FormWindowState.Maximized; MaximizeBox = false; MinimizeBox = false; StartPosition = FormStartPosition.CenterScreen; ipd = new InputPengirimData(); ipd.MdiParent = this; lpd = new LaporanPengiriman(); lpd.MdiParent = this; dp = new DaftarPengiriman(); dp.MdiParent = this; }
private void toolStripButton2_Click(object sender, EventArgs e) { lpd = new LaporanPengiriman(); lpd.MdiParent = this; lpd.Show(); }