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; 90var infoSession = _asyncQuickInfoBroker.GetSession(_textView); 128var span = _viewModel.InitialTrackingSpan.GetSpan(_textView.TextSnapshot); 129var line = _textView.GetTextViewLineContainingBufferPosition(span.Start); 138var top = (desiredTop + height) > _textView.ViewportBottom 139? _textView.ViewportBottom - height 142var left = (desiredLeft + width) > _textView.ViewportRight 143? _textView.ViewportRight - width 146MaxWidth = _textView.ViewportRight; 147MinWidth = Math.Min(DefaultMinWidth, _textView.ViewportWidth); 157_textView.LayoutChanged -= TextView_LayoutChanged; 158_textView.ViewportHeightChanged -= TextView_ViewPortChanged; 159_textView.ViewportWidthChanged -= TextView_ViewPortChanged; 162_textView.VisualElement.Focus(); 255_textView.SetSelection(new SnapshotSpan(startPoint + start, length));