/// <summary> /// Event handler for user click the button labeled options. /// </summary> /// <param name="sender">The parameter is not used.</param> /// <param name="e">The parameter is not used.</param> private void OptionsButtonClick(object sender, EventArgs e) { // Bring up options dialog GeneralOptions options = new GeneralOptions(); options.ShowDialog(); }
private void OptionsLabel_Click(object sender, EventArgs e) { // make GeneralOptions Form come to top. GeneralOptions options = new GeneralOptions(); options.ShowDialog(); }