PopulatingEventHandler.cs 1.0 KB

12345678910111213141516171819202122232425
  1. // (c) Copyright Microsoft Corporation.
  2. // This source is subject to the Microsoft Public License (Ms-PL).
  3. // Please see http://go.microsoft.com/fwlink/?LinkID=131993] for details.
  4. // All other rights reserved.
  5. using System;
  6. using System.Diagnostics.CodeAnalysis;
  7. using System.Windows;
  8. namespace System.Windows.Controls
  9. {
  10. /// <summary>
  11. /// Represents the method that will handle the
  12. /// <see cref="E:System.Windows.Controls.AutoCompleteBox.Populating" />
  13. /// event of a <see cref="T:System.Windows.Controls.AutoCompleteBox" />
  14. /// control.
  15. /// </summary>
  16. /// <param name="sender">The source of the event.</param>
  17. /// <param name="e">A
  18. /// <see cref="T:System.Windows.Controls.PopulatingEventArgs" /> that
  19. /// contains the event data.</param>
  20. /// <QualityBand>Stable</QualityBand>
  21. [SuppressMessage("Microsoft.Design", "CA1003:UseGenericEventHandlerInstances", Justification = "There is no generic RoutedEventHandler.")]
  22. public delegate void PopulatingEventHandler(object sender, PopulatingEventArgs e);
  23. }