1 write to _textView
Microsoft.CodeAnalysis.EditorFeatures.Wpf (1)
InlineRename\UI\Adornment\RenameFlyout.xaml.cs (1)
38_textView = textView;
15 references to _textView
Microsoft.CodeAnalysis.EditorFeatures.Wpf (15)
InlineRename\UI\Adornment\RenameFlyout.xaml.cs (15)
40_textView.LayoutChanged += TextView_LayoutChanged; 41_textView.ViewportHeightChanged += TextView_ViewPortChanged; 42_textView.ViewportWidthChanged += TextView_ViewPortChanged; 74var infoSession = _asyncQuickInfoBroker.GetSession(_textView); 109var span = _viewModel.InitialTrackingSpan.GetSpan(_textView.TextSnapshot); 110var line = _textView.GetTextViewLineContainingBufferPosition(span.Start); 119var top = (desiredTop + height) > _textView.ViewportBottom 120? _textView.ViewportBottom - height 123var left = (desiredLeft + width) > _textView.ViewportRight 124? _textView.ViewportRight - width 135_textView.LayoutChanged -= TextView_LayoutChanged; 136_textView.ViewportHeightChanged -= TextView_ViewPortChanged; 137_textView.ViewportWidthChanged -= TextView_ViewPortChanged; 140_textView.VisualElement.Focus(); 217_textView.SetSelection(new SnapshotSpan(startPoint + start, length));