1 write to _textView
Microsoft.CodeAnalysis.EditorFeatures.Wpf (1)
InlineRename\UI\Adornment\RenameFlyout.xaml.cs (1)
44_textView = textView;
15 references to _textView
Microsoft.CodeAnalysis.EditorFeatures.Wpf (15)
InlineRename\UI\Adornment\RenameFlyout.xaml.cs (15)
46_textView.LayoutChanged += TextView_LayoutChanged; 47_textView.ViewportHeightChanged += TextView_ViewPortChanged; 48_textView.ViewportWidthChanged += TextView_ViewPortChanged; 94var infoSession = _asyncQuickInfoBroker.GetSession(_textView); 132var span = _viewModel.InitialTrackingSpan.GetSpan(_textView.TextSnapshot); 133var line = _textView.GetTextViewLineContainingBufferPosition(span.Start); 142var top = (desiredTop + height) > _textView.ViewportBottom 143? _textView.ViewportBottom - height 146var left = (desiredLeft + width) > _textView.ViewportRight 147? _textView.ViewportRight - width 158_textView.LayoutChanged -= TextView_LayoutChanged; 159_textView.ViewportHeightChanged -= TextView_ViewPortChanged; 160_textView.ViewportWidthChanged -= TextView_ViewPortChanged; 163_textView.VisualElement.Focus(); 256_textView.SetSelection(new SnapshotSpan(startPoint + start, length));