mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-09-18 17:48:18 +08:00
20 lines
292 B
C#
20 lines
292 B
C#
![]() |
using CPF.Mac.Foundation;
|
||
|
using System;
|
||
|
|
||
|
namespace CPF.Mac.AppKit
|
||
|
{
|
||
|
public class NSOpenSavePanelUrlEventArgs : EventArgs
|
||
|
{
|
||
|
public NSUrl NewDirectoryUrl
|
||
|
{
|
||
|
get;
|
||
|
set;
|
||
|
}
|
||
|
|
||
|
public NSOpenSavePanelUrlEventArgs(NSUrl newDirectoryUrl)
|
||
|
{
|
||
|
NewDirectoryUrl = newDirectoryUrl;
|
||
|
}
|
||
|
}
|
||
|
}
|