'Declaration Public Event PropertyGroupCreated As EventHandler(Of PropertyGroupCreatedEventArgs)
public event EventHandler<PropertyGroupCreatedEventArgs> PropertyGroupCreated
Event Data
The event handler receives an argument of type PropertyGroupCreatedEventArgs containing data related to this event. The following PropertyGroupCreatedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
DataType | Gets the data type for the group being created. |
PropertyGroupDescription | Gets or sets the PropertyGroupDescription for the group being created. |
Remarks
This event allows you to customize the new System.Windows.Data.PropertyGroupDescription by assigning it a custom IConverter.
See Also