ComponentOne Basic Library for WPF and Silverlight
ItemsChanged Event (C1TabControl)


C1.WPF Namespace > C1TabControl Class : ItemsChanged Event
Called when the value of the System.Windows.Controls.ItemsControl.Items property changes.
Syntax
'Declaration
 
Public Event ItemsChanged As System.EventHandler(Of NotifyCollectionChangedEventArgs)
'Usage
 
Dim instance As C1TabControl
Dim handler As System.EventHandler(Of NotifyCollectionChangedEventArgs)
 
AddHandler instance.ItemsChanged, handler
public event System.EventHandler<NotifyCollectionChangedEventArgs> ItemsChanged
Event Data

The event handler receives an argument of type System.Collections.Specialized.NotifyCollectionChangedEventArgs containing data related to this event. The following NotifyCollectionChangedEventArgs properties provide information specific to this event.

PropertyDescription
Gets the description of the action that caused the event.  
Gets the items affected by an action.  
Gets the index at which the change occurred.  
Gets the item affected by a System.Collections.Specialized.NotifyCollectionChangedAction.Replace or System.Collections.Specialized.NotifyCollectionChangedAction.Remove action.  
Gets the index at which the change occurred for a System.Collections.Specialized.NotifyCollectionChangedAction.Replace or System.Collections.Specialized.NotifyCollectionChangedAction.Remove action.  
See Also