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