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/SelectedCellsChangedEventHa...

17 lines
728 B
C#

//---------------------------------------------------------------------------
//
// Copyright (C) Microsoft Corporation. All rights reserved.
//
//---------------------------------------------------------------------------
using System;
namespace ExtendedGrid.Microsoft.Windows.Controls
{
/// <summary>
/// An event handler used to notify of changes to the SelectedCells collection.
/// </summary>
/// <param name="sender">The DataGrid that owns the SelectedCells collection that changed.</param>
/// <param name="e">Event arguments that communicate which cells were added or removed.</param>
public delegate void SelectedCellsChangedEventHandler(object sender, SelectedCellsChangedEventArgs e);
}