/// <summary> /// Handles the Click event of the btn_Balance control. /// Öffnet die Maske zum Eintragen der Gewichtungsfaktoren /// </summary> /// <param name="sender">The source of the event.</param> /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param> /// Erstellt von Veit Berg, am 27.01.16 private void btn_Balance_Click(object sender, EventArgs e) { try{ ProjCritBalance_View ProjCritBalance = new ProjCritBalance_View(this, Project.Project_Id); ProjCritBalance.Show(); Hide(); } catch (Exception x) { MessageBox.Show(x.Message); } }