Inheritance: System.Windows.Forms.Form
示例#1
0
        private void multiSampleToolStripMenuItem_Click(object sender, EventArgs e)
        {
            var multi = new MultiSample();

            multi.MdiParent = this;
            multi.Show();
        }
 private void multiSampleToolStripMenuItem_Click(object sender, EventArgs e)
 {
     var multi = new MultiSample(serverAddress);
     multi.MdiParent = this;
     multi.Show();
 }