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

19 lines
216 B
C#

using System;
namespace CPF.Mac.AppKit
{
public class NSPathCellMenuEventArgs : EventArgs
{
public NSMenu Menu
{
get;
set;
}
public NSPathCellMenuEventArgs(NSMenu menu)
{
Menu = menu;
}
}
}