Sic.Framework/MECF.Framework.UI.Client/DataGridTransform/DataGrid/Microsoft/Windows/Controls/DataGridRowEventArgs.cs

25 lines
559 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
//---------------------------------------------------------------------------
//
// 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;
}
}
}