コード例 #1
0
 private void editTargetButton_Click(object sender, EventArgs e)
 {
     SetConnection connectionForm = new SetConnection(this.targetTextBox.Text, false);
     connectionForm.ShowDialog(this);
 }
コード例 #2
0
        private void editTargetButton_Click(object sender, EventArgs e)
        {
            SetConnection connectionForm = new SetConnection(_target, false);

            connectionForm.ShowDialog(this);
        }
コード例 #3
0
 private void editSourceButton_Click(object sender, EventArgs e)
 {
     SetConnection connectionForm = new SetConnection(this.sourceTextBox.Text, true);
     connectionForm.ShowDialog(this);
 }
コード例 #4
0
        private void editSourceButton_Click(object sender, EventArgs e)
        {
            SetConnection connectionForm = new SetConnection(_source, true);

            connectionForm.ShowDialog(this);
        }