19 lines
280 B
C#
19 lines
280 B
C#
namespace Decal.Adapter;
|
|
|
|
public class ListSelectEventArgs : ControlEventArgs
|
|
{
|
|
private int row;
|
|
|
|
private int col;
|
|
|
|
public int Row => row;
|
|
|
|
public int Column => col;
|
|
|
|
internal ListSelectEventArgs(int ID, int Row, int Column)
|
|
: base(ID)
|
|
{
|
|
row = Row;
|
|
col = Column;
|
|
}
|
|
}
|