ItemMouseDoubleClickEventArgs.cs 496 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CustomUI.MyControls.Primitives
  6. {
  7. public class ItemMouseDoubleClickEventArgs<T> : EventArgs
  8. {
  9. public ItemMouseDoubleClickEventArgs() { }
  10. public T NewValue { get; private set; }
  11. public static ItemMouseDoubleClickEventArgs<T> ItemDoubleClick(T newValue)
  12. {
  13. return new ItemMouseDoubleClickEventArgs<T>() { NewValue = newValue };
  14. }
  15. }
  16. }