1 write to _textView
Microsoft.CodeAnalysis.EditorFeatures (1)
InlineRename\UI\Adornment\RenameFlyout.xaml.cs (1)
42_textView = textView;
17 references to _textView
Microsoft.CodeAnalysis.EditorFeatures (17)
InlineRename\UI\Adornment\RenameFlyout.xaml.cs (17)
44_textView.LayoutChanged += TextView_LayoutChanged; 45_textView.ViewportHeightChanged += TextView_ViewPortChanged; 46_textView.ViewportWidthChanged += TextView_ViewPortChanged; 91var infoSession = _asyncQuickInfoBroker.GetSession(_textView); 129var span = _viewModel.InitialTrackingSpan.GetSpan(_textView.TextSnapshot); 130var line = _textView.GetTextViewLineContainingBufferPosition(span.Start); 139var top = (desiredTop + height) > _textView.ViewportBottom 140? _textView.ViewportBottom - height 143var left = (desiredLeft + width) > _textView.ViewportRight 144? _textView.ViewportRight - width 147MaxWidth = _textView.ViewportRight; 148MinWidth = Math.Min(DefaultMinWidth, _textView.ViewportWidth); 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));