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

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