4 writes to SelectedIndex
Microsoft.VisualStudio.LanguageServices (4)
ChangeSignature\ChangeSignatureDialogViewModel.cs (4)
95this.SelectedIndex = 1; 99this.SelectedIndex = null; 104this.SelectedIndex = selectedIndex; 470SelectedIndex += delta;
14 references to SelectedIndex
Microsoft.VisualStudio.LanguageServices (14)
ChangeSignature\ChangeSignatureDialogViewModel.cs (14)
211if (!SelectedIndex.HasValue) 216index = SelectedIndex.Value; 410if (!SelectedIndex.HasValue) 415var index = SelectedIndex.Value; 430if (!SelectedIndex.HasValue) 435var index = SelectedIndex.Value; 450var index = SelectedIndex!.Value; 459var index = SelectedIndex!.Value; 548return string.Format(ServicesVSResources.Move_0_above_1, AllParameters[SelectedIndex!.Value].ShortAutomationText, AllParameters[SelectedIndex!.Value - 1].ShortAutomationText); 561return string.Format(ServicesVSResources.Move_0_below_1, AllParameters[SelectedIndex!.Value].ShortAutomationText, AllParameters[SelectedIndex!.Value + 1].ShortAutomationText); 574return string.Format(ServicesVSResources.Remove_0, AllParameters[SelectedIndex!.Value].ShortAutomationText); 587return string.Format(ServicesVSResources.Restore_0, AllParameters[SelectedIndex!.Value].ShortAutomationText);