Example #1
0
        void buttonTracingOptions_Click(object sender, EventArgs e)
        {
            TraceOptionsForm form   = new TraceOptionsForm(this.config);
            DialogResult     result = form.ShowDialog();

            if (result == DialogResult.OK)
            {
                ComponentChanged();
            }
        }
Example #2
0
 void buttonTracingOptions_Click(object sender, EventArgs e)
 {
     TraceOptionsForm form = new TraceOptionsForm(this.config);
     DialogResult result = form.ShowDialog();
     if (result == DialogResult.OK)
     {
         ComponentChanged();
     }
 }