[]
Gets the collection used to generate the content of the GcComboBox.
public ObservableCollection<object> Items { get; }
Public ReadOnly Property Items As ObservableCollection(Of Object)
You can add items to an GcComboBox by adding items to the Items property or by binding the ItemsSource property to a data collection. You can add objects of different types to Items. If ItemsSource is not null, the items in the items property are read-only. You cannot add an object or change the objects in the Items property.
The following code example demonstrates how to use Items property.