34 lines
432 B
C#
34 lines
432 B
C#
![]() |
using CPF.Mac.Foundation;
|
||
|
using System;
|
||
|
|
||
|
namespace CPF.Mac.AppKit
|
||
|
{
|
||
|
public class NSTableViewCellEventArgs : EventArgs
|
||
|
{
|
||
|
public NSObject Cell
|
||
|
{
|
||
|
get;
|
||
|
set;
|
||
|
}
|
||
|
|
||
|
public NSTableColumn TableColumn
|
||
|
{
|
||
|
get;
|
||
|
set;
|
||
|
}
|
||
|
|
||
|
public long Row
|
||
|
{
|
||
|
get;
|
||
|
set;
|
||
|
}
|
||
|
|
||
|
public NSTableViewCellEventArgs(NSObject cell, NSTableColumn tableColumn, long row)
|
||
|
{
|
||
|
Cell = cell;
|
||
|
TableColumn = tableColumn;
|
||
|
Row = row;
|
||
|
}
|
||
|
}
|
||
|
}
|