コード例 #1
0
ファイル: mainform.cs プロジェクト: wt201501/STKSIMUL
 private void 仿真控制ToolStripMenuItem_Click(object sender, EventArgs e)
 {
     simf = simform.createform();
     simf.MdiParent = this;
     simf.Show();
     simf.Focus();
 }
コード例 #2
0
ファイル: mainform.cs プロジェクト: chizao89757/STKSIMUL2
        private void 仿真控制ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            simf = simform.createform();
            simf.MdiParent = this;
            simf.WindowState = FormWindowState.Maximized;

            simf.Show();
            simf.Focus();
            this.Width++;
            this.Invalidate();
            this.Width--;

            
        }