ComponentOne DataGrid for WPF and Silverlight
LoadedRowPresenter Event (C1DataGrid)

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

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

PropertyDescription
Gets the row.  
Remarks
Typically used to set visual properties to the row visual element. Please note you might need to unset the visual properties in the UnloadedRowPresenter event.
See Also