// (c) Copyright Microsoft Corporation. // This source is subject to the Microsoft Public License (Ms-PL). // Please see http://go.microsoft.com/fwlink/?LinkID=131993] for details. // All other rights reserved. using System; using System.Diagnostics.CodeAnalysis; using System.Windows; namespace System.Windows.Controls { /// /// Represents the method that will handle the /// /// event of a /// control. /// /// The source of the event. /// A /// that /// contains the event data. /// Stable [SuppressMessage("Microsoft.Design", "CA1003:UseGenericEventHandlerInstances", Justification = "There is no generic RoutedEventHandler.")] public delegate void PopulatingEventHandler(object sender, PopulatingEventArgs e); }