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