예제 #1
0
파일: MainForm.cs 프로젝트: microm/eplib
 private void toolStripStageButton_Click(object sender, EventArgs e)
 {
     StageForm stageEditor = new StageForm();
     stageEditor.Init(m_main);
     stageEditor.Show();
 }
예제 #2
0
파일: StageBox.cs 프로젝트: microm/eplib
 internal void Init( Main main,StageForm form )
 {
     m_main = main;
     m_form = form;
     m_center = new TPoint(Width / 2, Height / 2);
 }