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