RegisterForDraggedTypes(new string[] { "NSFilenamesPboardType" });
public override void DraggingEnded(NSDraggingInfo sender)
{
isDragIn = false;
this.NeedsDisplay = true;
NSMutableArray array = (Foundation.NSMutableArray)sender.GetDraggingPasteboard().GetPropertyListForType("NSFilenamesPboardType");
string filePath = array.GetItem<NSString>(0);
Console.WriteLine(filePath);
}
网友评论