16 lines
241 B
C#
16 lines
241 B
C#
using System;
|
|
|
|
namespace MLV;
|
|
|
|
public class ManagedListViewItemSelectArgs : EventArgs
|
|
{
|
|
private int itemIndex;
|
|
|
|
public int ItemIndex => itemIndex;
|
|
|
|
public ManagedListViewItemSelectArgs(int itemIndex)
|
|
{
|
|
this.itemIndex = itemIndex;
|
|
}
|
|
}
|