1 write to _textView
Microsoft.CodeAnalysis.EditorFeatures (1)
InlineRename\UI\Adornment\RenameFlyout.xaml.cs (1)
41_textView = textView;
17 references to _textView
Microsoft.CodeAnalysis.EditorFeatures (17)
InlineRename\UI\Adornment\RenameFlyout.xaml.cs (17)
43_textView.LayoutChanged += TextView_LayoutChanged; 44_textView.ViewportHeightChanged += TextView_ViewPortChanged; 45_textView.ViewportWidthChanged += TextView_ViewPortChanged; 96var infoSession = _asyncQuickInfoBroker.GetSession(_textView); 134var span = _viewModel.InitialTrackingSpan.GetSpan(_textView.TextSnapshot); 135var line = _textView.GetTextViewLineContainingBufferPosition(span.Start); 144var top = (desiredTop + height) > _textView.ViewportBottom 145? _textView.ViewportBottom - height 148var left = (desiredLeft + width) > _textView.ViewportRight 149? _textView.ViewportRight - width 152MaxWidth = _textView.ViewportRight; 153MinWidth = Math.Min(DefaultMinWidth, _textView.ViewportWidth); 164_textView.LayoutChanged -= TextView_LayoutChanged; 165_textView.ViewportHeightChanged -= TextView_ViewPortChanged; 166_textView.ViewportWidthChanged -= TextView_ViewPortChanged; 169_textView.VisualElement.Focus(); 239_textView.SetSelection(new SnapshotSpan(startPoint + start, length));