mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-15 05:13:18 +08:00
26 lines
311 B
C#
26 lines
311 B
C#
![]() |
using System;
|
||
|
|
||
|
namespace CPF.Mac.AppKit
|
||
|
{
|
||
|
public class NSTableViewRowEventArgs : EventArgs
|
||
|
{
|
||
|
public NSTableRowView RowView
|
||
|
{
|
||
|
get;
|
||
|
set;
|
||
|
}
|
||
|
|
||
|
public long Row
|
||
|
{
|
||
|
get;
|
||
|
set;
|
||
|
}
|
||
|
|
||
|
public NSTableViewRowEventArgs(NSTableRowView rowView, long row)
|
||
|
{
|
||
|
RowView = rowView;
|
||
|
Row = row;
|
||
|
}
|
||
|
}
|
||
|
}
|