Exemple #1
0
        public BlameFileBinding(IBlameSource blameSource, BlameViewer blameViewer, BlameOptions blameOptions)
        {
            Verify.Argument.IsNotNull(blameSource, nameof(blameSource));
            Verify.Argument.IsNotNull(blameViewer, nameof(blameViewer));
            Verify.Argument.IsNotNull(blameOptions, nameof(blameOptions));

            BlameSource    = blameSource;
            BlameViewer    = blameViewer;
            _blameOptions  = blameOptions;
            _progressPanel = new FlowProgressPanel();

            Progress = _progressPanel.ProgressMonitor;
        }
Exemple #2
0
 public BlameViewModel(IBlameSource blameSource)
 {
     BlameSource = blameSource;
 }
Exemple #3
0
 public BlameViewModel(IBlameSource blameSource)
 {
     _blameSource = blameSource;
 }