New to Telerik UI for WinFormsStart a free 30-day trial

Represents a collection of WizardPage objects.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.UI.dll

Syntax:

C#
public class WizardPageCollection : ObservableCollection<WizardPage>, IList, ICollection, IEnumerable, INotifyCollectionChanged, INotifyCollectionChanging, INotifyPropertyChanged, INotifyPropertyChangingEx

Inheritance: objectCollection<WizardPage>ObservableCollection<WizardPage>WizardPageCollection

Implements: ICollectionIEnumerableIListINotifyCollectionChangedINotifyCollectionChangingINotifyPropertyChangedINotifyPropertyChangingEx...

Inherited Members ObservableCollection<WizardPage>.CountStringObservableCollection<WizardPage>.ItemArrayStringObservableCollection<WizardPage>.ClearItems()ObservableCollection<WizardPage>.InsertItem(int, WizardPage, Action<WizardPage>)ObservableCollection<WizardPage>.Move(int, int)ObservableCollection<WizardPage>.MoveItem(int, int)ObservableCollection<WizardPage>.BeginUpdate()ObservableCollection<WizardPage>.BeginItemUpdate()ObservableCollection<WizardPage>.EndItemUpdate()ObservableCollection<WizardPage>.EndItemUpdate(bool)ObservableCollection<WizardPage>.EndUpdate(bool)ObservableCollection<WizardPage>.EndUpdate()ObservableCollection<WizardPage>.OnCollectionChanged(NotifyCollectionChangedEventArgs)ObservableCollection<WizardPage>.NotifyListenersCollectionChanged(NotifyCollectionChangedEventArgs)ObservableCollection<WizardPage>.CallCollectionChanged(object, NotifyCollectionChangedEventArgs)ObservableCollection<WizardPage>.OnCollectionChanging(NotifyCollectionChangingEventArgs)ObservableCollection<WizardPage>.NotifyListenersCollectionChanging(NotifyCollectionChangingEventArgs)ObservableCollection<WizardPage>.CallCollectionChanging(object, NotifyCollectionChangingEventArgs)ObservableCollection<WizardPage>.AddRange(IEnumerable<WizardPage>)ObservableCollection<WizardPage>.RemoveRange(IEnumerable<WizardPage>)ObservableCollection<WizardPage>.OnCollectionChanged(NotifyCollectionChangedAction, object, int)ObservableCollection<WizardPage>.OnCollectionChanged(NotifyCollectionChangedAction, object, int, int)ObservableCollection<WizardPage>.OnCollectionChanged(NotifyCollectionChangedAction, object, object, int)ObservableCollection<WizardPage>.OnCollectionReset(IList)ObservableCollection<WizardPage>.OnCollectionChanging(NotifyCollectionChangedAction, object, int)ObservableCollection<WizardPage>.OnCollectionChanging(NotifyCollectionChangedAction, object, int, int)ObservableCollection<WizardPage>.OnCollectionChanging(NotifyCollectionChangedAction, object, object, int)ObservableCollection<WizardPage>.OnCollectionReseting()ObservableCollection<WizardPage>.OnNotifyPropertyChanged(string)ObservableCollection<WizardPage>.OnNotifyPropertyChanged(PropertyChangedEventArgs)ObservableCollection<WizardPage>.OnNotifyPropertyChanging(string)ObservableCollection<WizardPage>.OnNotifyPropertyChanging(PropertyChangingEventArgsEx)ObservableCollection<WizardPage>.IsUpdatedObservableCollection<WizardPage>.CollectionChangedObservableCollection<WizardPage>.CollectionChangingObservableCollection<WizardPage>.PropertyChangedObservableCollection<WizardPage>.PropertyChangingCollection<WizardPage>.Clear()Collection<WizardPage>.CopyTo(WizardPage[], int)Collection<WizardPage>.Contains(WizardPage)Collection<WizardPage>.GetEnumerator()Collection<WizardPage>.IndexOf(WizardPage)Collection<WizardPage>.Insert(int, WizardPage)Collection<WizardPage>.Remove(WizardPage)Collection<WizardPage>.RemoveAt(int)Collection<WizardPage>.CountCollection<WizardPage>.ItemsCollection<WizardPage>.this[int]...

Constructors

Creates a WizardPageCollection instance.

C#
public WizardPageCollection(RadWizardElement owner)
Parameters:ownerRadWizardElement

Owner of the element.

Properties

Gets the owner RadWizardElement of the collection.

C#
public RadWizardElement Owner { get; }

Methods

Inserts a WizardPage before the RadWizard CompletionPage in the collection.

C#
public void Add(WizardPage page)
Parameters:pageWizardPage

Overridden. Inserts an item into the collection at the specified index.

C#
protected override void InsertItem(int index, WizardPage item)
Parameters:indexintitemWizardPage

Overrides: ObservableCollection<WizardPage>.InsertItem(int, WizardPage)

Overridden. Removes the item at the specified index of the collection.

C#
protected override void RemoveItem(int index)
Parameters:indexint

Overrides: ObservableCollection<WizardPage>.RemoveItem(int)

Overridden. Replaces the element at the specified index.

C#
protected override void SetItem(int index, WizardPage item)
Parameters:indexintitemWizardPage

Overrides: ObservableCollection<WizardPage>.SetItem(int, WizardPage)