Ejemplo n.º 1
0
        /// <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();
        }
Ejemplo n.º 2
0
        private void OptionsLabel_Click(object sender, EventArgs e)
        {
            // make GeneralOptions Form come to top.
            GeneralOptions options = new GeneralOptions();

            options.ShowDialog();
        }
Ejemplo n.º 3
0
 /// <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();
 }
Ejemplo n.º 4
0
 private void OptionsLabel_Click(object sender, EventArgs e)
 {
     // make GeneralOptions Form come to top.
     GeneralOptions options = new GeneralOptions();
     options.ShowDialog();
 }