示例#1
0
        private void textBoxExample_Click(object sender, EventArgs e)
        {
            TexBoxExample form = new TexBoxExample();

            form.MdiParent = this;
            form.Show();
        }
示例#2
0
        private void textBoxExample_Click(object sender, EventArgs e) // Текстовые поля
        {
            var form = new TexBoxExample {
                MdiParent = this
            };

            form.Show();
        }