'Declaration
Public Event LoadedRowPresenter As EventHandler(Of DataGridRowEventArgs)
public event 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.
Property | Description |
---|---|
Row | 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