private void menuTram_TableView_Click(object sender, EventArgs e) { FrmStation frm = new FrmStation(); frm.MdiParent = this; frm.Dock = DockStyle.Fill; frm.Show(); }
public FrmDetailStation(StationViewModel station, FrmStation parentForm) { this.frmStation = parentForm; this.station = station; InitializeComponent(); }