File: src\Framework\System\Windows\Controls\DataGridSortingEventHandler.cs
Project: wpf\PresentationFramework.csproj (PresentationFramework)
//---------------------------------------------------------------------------
//
// Copyright (C) Microsoft Corporation.  All rights reserved.
//
//---------------------------------------------------------------------------
 
using System;
using System.Collections.Generic;
using System.Text;
 
namespace System.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);
}