New to Telerik UI for WPFStart a free 30-day trial

Provides data for the LoadingRowDetails and UnloadingRowDetails events.

Definition

Namespace:Telerik.Windows.Controls.GridView

Assembly:Telerik.Windows.Controls.GridView.dll

Syntax:

C#
public class GridViewRowDetailsEventArgs : EventArgs

Inheritance: objectEventArgsGridViewRowDetailsEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the GridViewRowDetailsEventArgs class.

C#
public GridViewRowDetailsEventArgs(GridViewRow row, FrameworkElement detailsElement)
Parameters:rowGridViewRow

The GridViewRow that details belong to.

detailsElementFrameworkElement

The FrameworkElement loaded from the row details template.

Properties

DetailsElement

FrameworkElement

Gets the FrameworkElement loaded from the row details template.

C#
public FrameworkElement DetailsElement { get; }

Gets the GridViewRow that details belong to.

C#
public GridViewRow Row { get; }

Visibility

Visibility?

Gets the Visibility of the row details.

C#
public Visibility? Visibility { get; }