Implemented interface member:
method
IndexOf
System.Collections.IList.IndexOf(System.Object)
11 references to IndexOf
System.Web.Mobile (2)
UI\MobileControls\Design\AppliedDeviceFiltersDialog.cs (1)
383int index = _cbAvailableFilters.Items.IndexOf(currentFilter);
UI\MobileControls\Design\PropertyOverridesDialog.cs (1)
1218int index = comboBox.Items.IndexOf(selectedItem);
System.Windows.Forms (3)
winforms\Managed\System\WinForms\ComboBox.cs (3)
1096x = itemsCollection.IndexOf(value); 4263return IndexOf(value) != -1; 4674return _owningComboBox.Items.IndexOf(_owningItem);
System.Workflow.ComponentModel (6)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (6)
174int userHeaderIndex = this.headerTextComboBox.Items.IndexOf(userHeader); 179this.headerTextComboBox.SelectedIndex = this.headerTextComboBox.Items.IndexOf(this.headerFooterCustom); 189if (this.headerAlignmentComboBox.Items.IndexOf(this.printDocument.PageSetupData.HeaderAlignment) != -1) 210int userFooterIndex = this.footerTextComboBox.Items.IndexOf(userFooter); 215this.footerTextComboBox.SelectedIndex = this.footerTextComboBox.Items.IndexOf(this.headerFooterCustom); 225if (this.footerAlignmentComboBox.Items.IndexOf(this.printDocument.PageSetupData.FooterAlignment) != -1)