我想将一个文件(比如 abc.txt)拖到我的xojo
程序中,让它写出删除文件的路径,返回类似C:\\mydata\abc.txt
.
我该怎么做呢?我需要启用某些属性吗?
我从手册或论坛中找不到任何有用的东西。
首先,将文件类型集添加到您的项目中。最初将其命名为 FileTypes1,但最好将其重命名为“DropTypes”。向其中添加您喜欢接受的文件类型。要接受任何文件,请在 IDE 的文件类型集编辑器中单击这些按钮的中心:
选择特殊/任何。
接下来,将此行添加到Open
应允许放置的控件或窗口的事件中:
me.AcceptFileDrop DropTypes.All
然后将此代码添加到控件或窗口的DropObject
事件中:
if obj.FolderItemAvailable then
dim f as FolderItem = obj.FolderItem
' Now you have the file reference in f.
' Get the path:
dim path as String = f.NativePath ' (in older RB versions, use *f.AbsolutePath* instead)
' Show the path:
MsgBox path
end