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;
94
var infoSession = _asyncQuickInfoBroker.GetSession(
_textView
);
132
var span = _viewModel.InitialTrackingSpan.GetSpan(
_textView
.TextSnapshot);
133
var line =
_textView
.GetTextViewLineContainingBufferPosition(span.Start);
142
var top = (desiredTop + height) >
_textView
.ViewportBottom
143
?
_textView
.ViewportBottom - height
146
var 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));