CPF/CPF.Mac/Mac/AppKit/NSTableViewCellEventArgs.cs
2023-11-21 23:05:03 +08:00

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;
}
}
}