2 overrides of SelectedIndex
System.Windows.Forms (2)
winforms\Managed\System\WinForms\ComboBox.cs (1)
1033public override int SelectedIndex {
winforms\Managed\System\WinForms\ListBox.cs (1)
863public override int SelectedIndex {
3 writes to SelectedIndex
System.Windows.Forms (3)
winforms\Managed\System\WinForms\ListControl.cs (3)
428this.SelectedIndex = index; 450this.SelectedIndex = dataManager.Position; 461this.SelectedIndex = this.dataManager.Position;
2 references to SelectedIndex
System.Windows.Forms (2)
winforms\Managed\System\WinForms\ListControl.cs (2)
411if (SelectedIndex != -1 && dataManager != null ) { 412object currentItem = dataManager[SelectedIndex];