1 write to RenameUserInput
Microsoft.CodeAnalysis.EditorFeatures.Wpf (1)
InlineRename\UI\Adornment\RenameFlyout.xaml.cs (1)
50
RenameUserInput
= _viewModel.SmartRenameViewModel is null ? new RenameUserInputTextBox(_viewModel) : new SmartRenameUserInputComboBox(_viewModel);
16 references to RenameUserInput
Microsoft.CodeAnalysis.EditorFeatures.Wpf (16)
InlineRename\UI\Adornment\RenameFlyout.xaml.cs (16)
53
var token1 = _listener.BeginAsyncOperation(nameof(
RenameUserInput
.GotFocus));
59
RenameUserInput
.Focus();
60
RenameUserInput
.SelectText(_viewModel.StartingSelection.Start, _viewModel.StartingSelection.Length);
61
RenameUserInput
.TextSelectionChanged += RenameUserInput_TextSelectionChanged;
62
RenameUserInput
.GotFocus += RenameUserInput_GotFocus;
68
RenameUserInputPresenter.Content =
RenameUserInput
;
69
RenameUserInput
.PreviewKeyDown += RenameUserInput_PreviewKeyDown;
191
: (FrameworkElement)
RenameUserInput
;
222
if (e.NewFocus !=
RenameUserInput
)
224
RenameUserInput
.Focus();
236
this.
RenameUserInput
.SelectAllText();
246
if (!this.
RenameUserInput
.IsFocused)
251
var start =
RenameUserInput
.TextSelectionStart;
252
var length =
RenameUserInput
.TextSelectionLength;
266
var currentIdentifier =
RenameUserInput
.Text;
274
RenameUserInput
.SelectText(newIdentifier.Length, 0);