1 write to _textView
Microsoft.CodeAnalysis.EditorFeatures.Wpf (1)
InlineRename\UI\Adornment\RenameFlyout.xaml.cs (1)
38
_textView
= textView;
15 references to _textView
Microsoft.CodeAnalysis.EditorFeatures.Wpf (15)
InlineRename\UI\Adornment\RenameFlyout.xaml.cs (15)
40
_textView
.LayoutChanged += TextView_LayoutChanged;
41
_textView
.ViewportHeightChanged += TextView_ViewPortChanged;
42
_textView
.ViewportWidthChanged += TextView_ViewPortChanged;
74
var infoSession = _asyncQuickInfoBroker.GetSession(
_textView
);
109
var span = _viewModel.InitialTrackingSpan.GetSpan(
_textView
.TextSnapshot);
110
var line =
_textView
.GetTextViewLineContainingBufferPosition(span.Start);
119
var top = (desiredTop + height) >
_textView
.ViewportBottom
120
?
_textView
.ViewportBottom - height
123
var left = (desiredLeft + width) >
_textView
.ViewportRight
124
?
_textView
.ViewportRight - width
135
_textView
.LayoutChanged -= TextView_LayoutChanged;
136
_textView
.ViewportHeightChanged -= TextView_ViewPortChanged;
137
_textView
.ViewportWidthChanged -= TextView_ViewPortChanged;
140
_textView
.VisualElement.Focus();
217
_textView
.SetSelection(new SnapshotSpan(startPoint + start, length));