예제 #1
0
파일: Task_4.cs 프로젝트: nara70/Csharp
        private void toolStripButton1_Click(object sender, EventArgs e)
        {
            Task_3 newChild = new Task_3(); /*newChild.MdiParent = this;*/ newChild.Show();

            newChild.Text = newChild.Text + " " + ++openDocuments;
        }
예제 #2
0
파일: Form1.cs 프로젝트: nara70/Csharp
        /// <summary>
        /// Відкриття третьої вправи
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void button3_Click(object sender, EventArgs e)
        {
            Task_3 task_3 = new Task_3();

            task_3.Show();
        }