ComponentOne DataGrid for WPF and Silverlight
C1.Silverlight.DataGrid Namespace / C1DataGrid Class / LoadedRowDetailsPresenter Event

In This Topic
    LoadedRowDetailsPresenter Event (C1DataGrid)
    In This Topic
    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 EventHandler(Of DataGridRowDetailsEventArgs)
    public event 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