Name | Description | |
---|---|---|
Add | Overloaded. Adds a ComboBoxItem to the list. | |
AddRange | Adds the specified values to the end of the list. | |
Clear | Removes all items from the list. | |
Contains | Overloaded. Retrieves a boolean value indicating if the item exists in the list. | |
CopyTo | Copies the items of the list to an array, starting at a particular array index. | |
GetEnumerator | Returns an enumerator that can iterate through the list. | |
IndexOf | Searches for the specified ComboBoxItem in the list and returns the zero-based index of the first occurrence. | |
Insert | Inserts a ComboBoxItem into the list at the specified index. | |
Remove | Removes the first occurrence of item from the list. | |
RemoveAt | Removes the item at the specified index. |