ComponentOne DataGrid for WPF and Silverlight
LoadedRowDetailsPresenter Event (C1DataGrid)

C1.WPF.DataGrid Namespace > C1DataGrid Class : LoadedRowDetailsPresenter Event
Occurs after the visual element of the row details is added in the visual tree and is ready for interaction.
Syntax
'Declaration
 
Public Event LoadedRowDetailsPresenter As System.EventHandler(Of DataGridRowDetailsEventArgs)
public event System.EventHandler<DataGridRowDetailsEventArgs> LoadedRowDetailsPresenter
Event Data

The event handler receives an argument of type DataGridRowDetailsEventArgs containing data related to this event. The following DataGridRowDetailsEventArgs properties provide information specific to this event.

PropertyDescription
Gets the details of a row.  
Gets the row that owns the details.  
See Also