Show / Hide Table of Contents

Class DataGridRowDetailsEventArgs

Provides data for the LoadingRowDetails, UnloadingRowDetails, and RowDetailsVisibilityChanged events.

Inheritance
System.Object
System.EventArgs
DataGridRowDetailsEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: System.Windows.Controls
Assembly: OpenSilver.Controls.Data.dll
Syntax
public class DataGridRowDetailsEventArgs : EventArgs

Constructors

| Improve this Doc View Source

DataGridRowDetailsEventArgs(DataGridRow, FrameworkElement)

Initializes a new instance of the DataGridRowDetailsEventArgs class.

Declaration
public DataGridRowDetailsEventArgs(DataGridRow row, FrameworkElement detailsElement)
Parameters
Type Name Description
DataGridRow row

The row that the event occurs for.

FrameworkElement detailsElement

The row details section as a framework element.

Properties

| Improve this Doc View Source

DetailsElement

Gets the row details section as a framework element.

Declaration
public FrameworkElement DetailsElement { get; }
Property Value
Type Description
FrameworkElement
| Improve this Doc View Source

Row

Gets the row that the event occurs for.

Declaration
public DataGridRow Row { get; }
Property Value
Type Description
DataGridRow
  • Improve this Doc
  • View Source