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

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