MDIアプリケーションのサンプルプログラムをシンプルに解説しています。
親フォームのプロパティ
1 |
IsMdiContainer = true; |
子フォームの表示
1 2 3 |
formChild = new FormChild(); formChild.MdiParent = this; formChild.Show(); |
MDIアプリケーションは、たくさんの機能を実装するには、機能を整理しやすく、とても便利です。