PropertyChangedEventArgs Class
Silverlight
Provides data for the PropertyChanged event.
System.Object
System.EventArgs
System.ComponentModel.PropertyChangedEventArgs
System.Windows.Controls.Pivot.PivotViewerPropertyChangedEventArgs
System.EventArgs
System.ComponentModel.PropertyChangedEventArgs
System.Windows.Controls.Pivot.PivotViewerPropertyChangedEventArgs
Namespace: System.ComponentModel
Assembly: System (in System.dll)
The PropertyChangedEventArgs type exposes the following members.
| Name | Description | |
|---|---|---|
|
PropertyChangedEventArgs | Initializes a new instance of the PropertyChangedEventArgs class. |
| Name | Description | |
|---|---|---|
|
Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
|
Finalize | Allows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.) |
|
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
|
GetType | Gets the Type of the current instance. (Inherited from Object.) |
|
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
|
ToString | Returns a string that represents the current object. (Inherited from Object.) |
A PropertyChanged event is raised when a property is changed on a component. A PropertyChangedEventArgs object specifies the name of the property that changed.
PropertyChangedEventArgs provides the PropertyName property to get the name of the property that changed.
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
Indexer Properties
For Indexer properties, use "Item[]" to represent a change to all values of the indexer property and "Item["+ index +"]" for a specific value.
- 3/8/2011
- Rafael R Ruiz