美文网首页
xamarin mac app 文件拖拽

xamarin mac app 文件拖拽

作者: UnityAsk | 来源:发表于2016-10-13 15:44 被阅读25次
    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);
    }

    相关文章

      网友评论

          本文标题:xamarin mac app 文件拖拽

          本文链接:https://www.haomeiwen.com/subject/vviwyttx.html