你看这个对你有没有些用处吧<br>用过Winamp的朋友都知道,Winamp的界面能支持文件拖放,当你想欣赏某MP3文件时,只需要将文件拖到Winamp的窗口上,然后放开鼠标就行了。那我们如何让自己的程序也实现这样的功能呢?我们可以通过改进开发工具提供的标准组件来实现。下面以Delphi环境中的ListBox组件为例,让ListBox支持文件拖放。 <br>首先介绍一下要用到的API函数: <br>DragAcceptFiles() 初始化某窗口使其允许/禁止接受文件拖放 <br>DragQueryFile() 查询拖放的文件名 <br>DragFinish() 释放拖放文件时使用的资源 <br>实现的基本原理如下:首先调用DragAcceptFiles()函数初始化组件窗口,使其允许接受文件拖放,然后等待WM_DropFiles消息(一旦用户进行了拖放文件操作,组件窗口即可获得此消息),获得消息后即可使用DragQueryFile()函数查询被拖放的文件名,最后调用DragFinish()释放资源。 <br><br>因为在VCL类库中,ListBox组件,所属类名为:TListBox,所以我们可以从TListBox继承建立自己的组件。新组件名为:DropFileListBox,它比标准TListBox增加了一个OnDropFiles事件和一个DropEnabled属性。当DropEnabled为True时即可接受文件拖放,文件拖放完成后激发OnDropFiles事件,该事件提供一个FileNames参数让用户获得文件名。 <br><br>组件的代码如下: <br><br>{ TDropFileListBox V1.00 Component } <br>{ Copyright (c) 2000.5 by Shen Min, Sunisoft } <br>{ Email: sunisoft@21cn.com } <br>{ Web: http://www.sunistudio.com } <br>unit DropFileListBox; <br>interface <br>uses <br>Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, <br>StdCtrls, ShellApi; //增加ShellApi单元,因为所使用的三个API函数声明于此单元文件中 <br>type <br>TMyNotifyEvent = procedure (Sender: TObject;FileNames:TStringList) of object; //自定 <br>义事件类型。 <br>TDropFileListBox = class(TListBox) //新的类从TListBox继承 <br>private <br>{ Private declarations } <br>FEnabled:Boolean; //属性DropEnabled的内部变量 <br>protected <br>FDropFile:TMyNotifyEvent; //事件指针 <br>procedure DropFiles(var Mes:TMessage);message WM_DROPFILES; <br>procedure FDropEnabled(Enabled:Boolean); //设置DropEnabled属性的过程 <br>{ Protected declarations } <br>public <br>constructor Create(AOwner: TComponent);override; <br>destructor Destroy;override; <br>{ Public declarations } <br>published <br>property OnDropFiles:TMyNotifyEvent read FDropFile write FDropFile; <br>property DropEnabled:Boolean read FEnabled write FDropEnabled; <br>{ Published declarations } <br>end; <br>procedure Register; <br><br>implementation <br><br>procedure Register; <br>begin <br>RegisterComponents('Sunisoft', [TDropFileListBox]); //注册组件到组件板上 <br>end; <br><br>constructor TDropFileListBox.Create(AOwner: TComponent); <br>begin <br>inherited Create(AOwner); <br>FEnabled:=true; //类被构造时,使DropEnabeld的默认值为True <br>end; <br><br>destructor TDropFileListBox.Destroy; <br>begin <br>inherited Destroy; <br>end; <br><br>//改变属性DropEnabled的调用过程 <br>procedure TDropFileListBox.FDropEnabled(Enabled:Boolean); <br>begin <br>FEnabled:=Enabled; <br>DragAcceptFiles(Self.Handle,Enabled);//设置组件窗口是否接受文件拖放 <br>end; <br><br>//接受WM_DropFiles消息的过程 <br>procedure TDropFileListBox.DropFiles(var Mes:TMessage); <br>var FN:TStringList; <br>FileName:array [1..256] of char; <br>sFN:String; <br>i,Count,p:integer; <br>begin <br>FN:=TStringList.Create; <br>Count:=DragQueryFile(Mes.WParam,$FFFFFFFF,@FileName,256);//得到拖放文件的个数 <br>For i:=0 to Count-1 do <br>begin <br>DragQueryFile(mes.WParam,i,@FileName,256);//查询文件名称 <br>sFN:=FileName; <br>p:=pos(chr(0),sFN);//去掉文件名末尾的ASCII码为0的字符 <br>sFN:=copy(sFN,1,p-1); <br>FN.Add(sFN); <br>end; <br>DragFinish(mes.WParam); //释放所使用的资源 <br>if Assigned(FDropFile) then <br>FDropFile(self, FN); //调用事件,并返回文件名列表参数 <br>FN.Free; <br>end; <br><br>end. <br> <br><br>该组件安装后即可使用,我们可以新建一个工程,将该组件放置在Form上,然后在 <br>TDropFileListBox组件的OnDropFiles事件中写下具体处理拖放操作的代码。 <br><br>例如将所有拖放的文件名加入该列表中,添加代码如下: <br><br>procedure TForm1.DropFileListBox1DropFiles(Sender: TObject;FileNames: TStringList); <br>begin <br>DropFileListBox1.Items.AddStrings(FileNames); <br>end; <br><br><br>运行一下看看,是不是很有趣?本文仅仅对于ListBox组件做了扩展,你也可以对其它组件做 <br>类似的扩展,实现支持文件的拖放。