private void SourceControlGetInfo(object sender, RoutedEventArgs e)
        {
            SourceControlItemInfoDetails SCIID = SourceControlIntegration.GetInfo(App.UserProfile.Solution.SourceControl, this.NodePath());
            SourceControlItemInfoPage    SCIIP = new SourceControlItemInfoPage(SCIID);

            SCIIP.ShowAsWindow();
        }
Exemple #2
0
        private void btnSourceControlRepositoryDetails_Click(object sender, RoutedEventArgs e)
        {
            SourceControlItemInfoDetails SCIInfoDetails = SourceControlIntegration.GetRepositoryInfo(App.UserProfile.Solution.SourceControl);
            SourceControlItemInfoPage    SCIIP          = new SourceControlItemInfoPage(SCIInfoDetails);

            SCIIP.ShowAsWindow();
        }
Exemple #3
0
        private void btnSourceControlRepositoryDetails_Click(object sender, RoutedEventArgs e)
        {
            SourceControlItemInfoDetails SCIInfoDetails = SourceControlIntegration.GetRepositoryInfo(WorkSpace.Instance.Solution.SourceControl);

            if (SCIInfoDetails != null)
            {
                SourceControlItemInfoPage SCIIP = new SourceControlItemInfoPage(SCIInfoDetails);
                SCIIP.ShowAsWindow();
            }
        }
        private void SourceControlGetInfo(object sender, RoutedEventArgs e)
        {
            SourceControlItemInfoDetails SCIID = SourceControlIntegration.GetInfo(WorkSpace.Instance.Solution.SourceControl, this.NodePath());

            if (SCIID != null)
            {
                SourceControlItemInfoPage SCIIP = new SourceControlItemInfoPage(SCIID);
                SCIIP.ShowAsWindow();
            }
        }