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 SourceDataGridRowDetailsEventArgs(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 SourceDetailsElement
Gets the row details section as a framework element.
Declaration
public FrameworkElement DetailsElement { get; }
Property Value
Type | Description |
---|---|
FrameworkElement |
Row
Gets the row that the event occurs for.
Declaration
public DataGridRow Row { get; }
Property Value
Type | Description |
---|---|
DataGridRow |