コード例 #1
0
 /// <summary>
 /// Function that runs when the serviceTypeMaintenanceButton is clicked - creates and displays a serviceTypeMaintenanceForm.
 /// </summary>
 /// <param name="sender">The object that called this function. In this case the serviceTypeMaintenanceButton.</param>
 /// <param name="e">The event arguments for the Click event passed to this function.</param>
 private void serviceTypeMaintenanceButton_Click(object sender, EventArgs e)
 {
     if (serviceTypeMaintenanceForm == null)
     {
         serviceTypeMaintenanceForm = new ServiceTypeMaintenanceForm(dataModule, this);
     }
     serviceTypeMaintenanceForm.ShowDialog();
 }
コード例 #2
0
ファイル: MainForm.cs プロジェクト: Fman72/assignment2
 /// <summary>
 /// Function that runs when the serviceTypeMaintenanceButton is clicked - creates and displays a serviceTypeMaintenanceForm.
 /// </summary>
 /// <param name="sender">The object that called this function. In this case the serviceTypeMaintenanceButton.</param>
 /// <param name="e">The event arguments for the Click event passed to this function.</param>
 private void serviceTypeMaintenanceButton_Click(object sender, EventArgs e)
 {
     if (serviceTypeMaintenanceForm == null)
     {
         serviceTypeMaintenanceForm = new ServiceTypeMaintenanceForm(dataModule, this);
     }
     serviceTypeMaintenanceForm.ShowDialog();
 }