File: System\Windows\Controls\SelectedCellsChangedEventHandler.cs
Web Access
Project: src\src\Microsoft.DotNet.Wpf\src\PresentationFramework\PresentationFramework.csproj (PresentationFramework)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
 
 
using System;
 
namespace System.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);
}