private void SourceControlUserTextBox_TextChanged(object sender, TextChangedEventArgs e)
 {
     SourceControlIntegration.Init(mSourceControl);
 }
 private void SourceControlPassTextBox_PasswordChanged(object sender, RoutedEventArgs e)
 {
     mSourceControl.SourceControlPass = ((PasswordBox)sender).Password;
     WorkSpace.Instance.UserProfile.SaveUserProfile(); //todo: check if needed
     SourceControlIntegration.Init(mSourceControl);
 }
Ejemplo n.º 3
0
 private void SourceControlUserDetails_TextChanged(object sender, TextChangedEventArgs e)
 {
     SourceControlIntegration.Init(App.UserProfile.Solution.SourceControl);
 }
Ejemplo n.º 4
0
 private void txtSourceControlConnectionTimeout_TextChanged(object sender, TextChangedEventArgs e)
 {
     SourceControlIntegration.Init(WorkSpace.Instance.Solution.SourceControl);
     WorkSpace.Instance.UserProfile.SolutionSourceControlTimeout = Int32.Parse(xTextSourceControlConnectionTimeout.Text);
 }
Ejemplo n.º 5
0
 private void SourceControlUserDetails_TextChanged(object sender, TextChangedEventArgs e)
 {
     SourceControlIntegration.Init(WorkSpace.Instance.Solution.SourceControl);
 }
 private void SourceControlPassTextBox_PasswordChanged(object sender, RoutedEventArgs e)
 {
     mSourceControl.SourceControlPass = ((PasswordBox)sender).Password;
     SourceControlIntegration.Init(mSourceControl);
 }