예제 #1
0
파일: MainForm.cs 프로젝트: kuyon/siren
 public void NewFile()
 {
     ViewForm newForm = new ViewForm();
     newForm.MdiParent = this;
     siren.MainForm.myNbOfChildren = siren.MainForm.myNbOfChildren + 1;
     string str = System.String.Format(newForm.Text + " {0}: �r���[ {1}", siren.MainForm.myNbOfChildren, 1);
     newForm.Text = str;
     newForm.Show();
     newForm.InitViewer();
     newForm.InitV3D();
     this.miView.Visible=true;
     this.Cursor=System.Windows.Forms.Cursors.Default;
     this.toolStripMain.Enabled = true;
 }