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