This repository has been archived on 2024-01-02. You can view files and clone it, but cannot push or open issues or pull requests.
Sic06/FrameworkLocal/UIClient/DataGridTransform/DataGrid/Microsoft/Windows/Controls/DataGridRowDetailsEventArgs.cs

31 lines
755 B
C#

//---------------------------------------------------------------------------
//
// Copyright (C) Microsoft Corporation. All rights reserved.
//
//---------------------------------------------------------------------------
using System;
using System.Windows;
namespace ExtendedGrid.Microsoft.Windows.Controls
{
public class DataGridRowDetailsEventArgs : EventArgs
{
public DataGridRowDetailsEventArgs(DataGridRow row, FrameworkElement detailsElement)
{
Row = row;
DetailsElement = detailsElement;
}
public FrameworkElement DetailsElement
{
get; private set;
}
public DataGridRow Row
{
get; private set;
}
}
}