示例#1
0
        private void menuTram_TableView_Click(object sender, EventArgs e)
        {
            FrmStation frm = new FrmStation();

            frm.MdiParent = this;
            frm.Dock      = DockStyle.Fill;
            frm.Show();
        }
示例#2
0
 public FrmDetailStation(StationViewModel station, FrmStation parentForm)
 {
     this.frmStation = parentForm;
     this.station    = station;
     InitializeComponent();
 }