ComponentOne DataGrid for WPF and Silverlight
LoadingRow Event (C1DataGrid)

C1.WPF.DataGrid Namespace > C1DataGrid Class : LoadingRow Event
Occurs when a data item is being loaded in the model This might happen both by bringing the row into view or requesting the row programmatically.
Syntax
'Declaration
 
Public Event LoadingRow As System.EventHandler(Of DataGridRowEventArgs)
public event System.EventHandler<DataGridRowEventArgs> LoadingRow
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 initialize properties for a particular row.
See Also