CPF/CPF.Mac/Mac/AppKit/NSTableViewRowEventArgs.cs

26 lines
311 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
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;
}
}
}