/* Based on Windows UI Library
Copyright(c) Microsoft Corporation.All rights reserved. */
namespace WPFluent.Controls;
///
/// Represents a method that handles general events.
///
/// The type of the sender.
/// The type of the event data.
/// The source of the event.
/// An object that contains the event data.
///
/// Represents a method that handles general events.
///
/// The type of the sender.
/// The type of the event data.
/// The source of the event.
/// An object that contains the event data.
public delegate void TypedEventHandler(TSender sender, TArgs args)
where TSender : DependencyObject
where TArgs : RoutedEventArgs;