FunctionEventArgs`1.cs 326 B

123456789101112131415161718
  1. using System.Windows;
  2. namespace HandyControl.Data;
  3. public class FunctionEventArgs<T> : RoutedEventArgs
  4. {
  5. public FunctionEventArgs(T info)
  6. {
  7. Info = info;
  8. }
  9. public FunctionEventArgs(RoutedEvent routedEvent, object source) : base(routedEvent, source)
  10. {
  11. }
  12. public T Info { get; set; }
  13. }