The form is used for collecting information of beam reinforcement creation
Inheritance: System.Windows.Forms.Form
 /// <summary>
 /// Display a form to collect the information for beam reinforcement creation
 /// </summary>
 /// <returns>true if the information collection is successful, otherwise false</returns>
 protected override bool DisplayForm()
 {
     // Display BeamFramReinMakerForm for the user to input information
     using (BeamFramReinMakerForm displayForm = new BeamFramReinMakerForm(this))
     {
         if (DialogResult.OK != displayForm.ShowDialog())
         {
             return(false);
         }
     }
     return(base.DisplayForm());
 }
Exemple #2
0
 /// <summary>
 /// Display a form to collect the information for beam reinforcement creation
 /// </summary>
 /// <returns>true if the information collection is successful, otherwise false</returns>
 protected override bool DisplayForm()
 {
     // Display BeamFramReinMakerForm for the user to input information
      using (BeamFramReinMakerForm displayForm = new BeamFramReinMakerForm(this))
      {
     if (DialogResult.OK != displayForm.ShowDialog())
     {
        return false;
     }
      }
      return base.DisplayForm();
 }