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/DataGridRowEventArgs.cs

25 lines
559 B
C#

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