Beispiel #1
0
 private void OglView_Updated(object sender, System.EventArgs e)
 {
     // Re-execute the current set up method to account for any changes
     // to settings like color scheme.
     (Control Control, _, Action <Control> SetUp) = Views[View];
     SetUp.Invoke(Control);
 }
Beispiel #2
0
 private void btn_SetUp_Click(object sender, EventArgs e)
 {
     lbl_Error.Text = "";
     SetUp?.Invoke();
 }
 private void SetUpSimulationButton_Click(object sender, EventArgs e)
 {
     SetUp?.Invoke();
 }
Beispiel #4
0
 private void button1_Click(object sender, EventArgs e)
 {
     SetUp?.Invoke();
 }
Beispiel #5
0
 private void btn_SetUp_Click(object sender, EventArgs e)
 {
     SetUp?.Invoke();
 }
Beispiel #6
0
 private void btnSubmit_Click(object sender, EventArgs e)
 {
     lblError.Text = string.Empty;
     SetUp?.Invoke();
 }