コード例 #1
0
ファイル: WSATControl.cs プロジェクト: dox0/DotNet471RS3
        void buttonTracingOptions_Click(object sender, EventArgs e)
        {
            TraceOptionsForm form   = new TraceOptionsForm(this.config);
            DialogResult     result = form.ShowDialog();

            if (result == DialogResult.OK)
            {
                ComponentChanged();
            }
        }
コード例 #2
0
ファイル: WSATControl.cs プロジェクト: mind0n/hive
 void buttonTracingOptions_Click(object sender, EventArgs e)
 {
     TraceOptionsForm form = new TraceOptionsForm(this.config);
     DialogResult result = form.ShowDialog();
     if (result == DialogResult.OK)
     {
         ComponentChanged();
     }
 }