| 12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace CustomUI.MyControls.Primitives
- {
- public class ItemMouseDoubleClickEventArgs<T> : EventArgs
- {
- public ItemMouseDoubleClickEventArgs() { }
- public T NewValue { get; private set; }
- public static ItemMouseDoubleClickEventArgs<T> ItemDoubleClick(T newValue)
- {
- return new ItemMouseDoubleClickEventArgs<T>() { NewValue = newValue };
- }
- }
- }
|