using System; namespace MLV; public class ManagedListViewItemSelectArgs : EventArgs { private int itemIndex; public int ItemIndex => itemIndex; public ManagedListViewItemSelectArgs(int itemIndex) { this.itemIndex = itemIndex; } }