// Copyright Microsoft Corporation.
// This source is subject to the Microsoft Source License for Silverlight Controls (March 2008 Release).
// Please see http://go.microsoft.com/fwlink/?LinkID=111693 for details.
// All other rights reserved.
namespace System.Windows.Controls{
/// <summary>
/// Represents the methods that handle the SelectionChanged event.
/// </summary>
/// <param name="sender">The current element along the event's route.</param>
/// <param name="e">The event arguments containing additional information about the SelectionChanged event.</param>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1003:UseGenericEventHandlerInstances", Justification = "Maintaining compatibility with WPF")]
public delegate void SelectionChangedEventHandler(object sender, SelectionChangedEventArgs e);
}
|