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