Sic04/FrameworkLocal/UIClient/DataGridTransform/DataGrid/Microsoft/Windows/Controls/DataGridSortingEventHandler.cs

20 lines
615 B
C#

//---------------------------------------------------------------------------
//
// Copyright (C) Microsoft Corporation. All rights reserved.
//
//---------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Text;
namespace ExtendedGrid.Microsoft.Windows.Controls
{
/// <summary>
/// Delegate for listeners on Sorting event on datagrid
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
public delegate void DataGridSortingEventHandler(object sender, DataGridSortingEventArgs e);
}