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