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);
        }
 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);
        }