コード例 #1
0
 private void btnShowNextLotData_Click(object sender, EventArgs e)
 {
     if (nextLotData == null)
     {
         nextLotData = new NextLotData();
         nextLotData.WindowClosed += NextLotDataClosed;
         nextLotData.ApplyClicked += NextLotDataApplyClicked;
         nextLotData.Show();
     }
     else
     {
         nextLotData.BringToFront();
     }
 }
コード例 #2
0
 private void NextLotDataClosed()
 {
     nextLotData = null;
 }