private void settargetButton_Click(object sender, RoutedEventArgs e) { SetConnection setconnection = new SetConnection(_target, false); setconnection.Owner = this; setconnection.ShowDialog(); }
private void setsourceButton_Click(object sender, RoutedEventArgs e) { SetConnection setconnection = new SetConnection(_source, true); setconnection.Owner = this; setconnection.ShowDialog(); }