Пример #1
0
 public PreviewUpdater(IThreadingContext threadingContext, ITextView textView)
     : base(threadingContext)
 {
     _textView = textView;
     _tagger   = new PreviewTagger(textView.TextBuffer);
     _textView.Properties[typeof(PreviewTagger)] = _tagger;
 }
Пример #2
0
 public PreviewUpdater(IThreadingContext threadingContext, ITextView textView)
     : base(threadingContext)
 {
     PreviewUpdater.TextView = textView;
     Tagger = new PreviewTagger(textView.TextBuffer);
 }
Пример #3
0
 public PreviewUpdater(ITextView textView)
 {
     PreviewUpdater.TextView = textView;
     Tagger = new PreviewTagger(textView, textView.TextBuffer);
 }
Пример #4
0
 public PreviewUpdater(ITextView textView)
 {
     PreviewUpdater.TextView = textView;
     Tagger = new PreviewTagger(textView, textView.TextBuffer);
 }