mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
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;
|
|
}
|
|
}
|
|
}
|