博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Delphi 资源管理器套件
阅读量:5738 次
发布时间:2019-06-18

本文共 1223 字,大约阅读时间需要 4 分钟。

需要个类似资源管理器的东西, 首先试了下 TDriveComboBox、TDirectoryListBox、TFileListBox, 嘿! Win31 时代的东西, 不是一般地丑.
试了下 Vcl.Shell.ShellCtrls 下的 TShellComboBox、TShellTreeView、TShellListView, 非常满意! 并且 TShellComboBox 也可以免掉了.

unit Unit1;interfaceuses  Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,  Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.FileCtrl, Vcl.StdCtrls,  Vcl.ComCtrls;type  TForm1 = class(TForm)    procedure FormCreate(Sender: TObject);  private    procedure TreeViewOnChange(Sender: TObject; Node: TTreeNode);  public  end;var  Form1: TForm1;implementation{$R *.dfm}uses Vcl.Shell.ShellCtrls;var  C: TShellComboBox;  T: TShellTreeView;  L: TShellListView;procedure TForm1.FormCreate(Sender: TObject);begin  C := TShellComboBox.Create(Self);  T := TShellTreeView.Create(Self);  L := TShellListView.Create(Self);  C.Parent := Self;  T.Parent := Self;  L.Parent := Self;  T.Width := Screen.Width div 4;  C.Align := alTop;  T.Align := alLeft;  L.Align := alClient;  T.ShellComboBox := C;  L.ShellTreeView := T;  L.ViewStyle := vsList;  T.OnChange := TreeViewOnChange;end;procedure TForm1.TreeViewOnChange(Sender: TObject; Node: TTreeNode);begin  Caption := T.SelectedFolder.PathName;end;end.

转载地址:http://avyzx.baihongyu.com/

你可能感兴趣的文章
数据传输流程和socket简单操作
查看>>
ProbS CF matlab源代码(二分系统)(原创作品,转载注明出处,谢谢!)
查看>>
OC中KVC的注意点
查看>>
JQ入门(至回调函数)
查看>>
【洛天依】几首歌的翻唱(无伴奏)
查看>>
OpenSSL初瞻及本系列的博文的缘由
查看>>
ISO8583接口的详细资料
查看>>
tmux不自动加载配置文件.tmux.conf
查看>>
经验分享:JavaScript小技巧
查看>>
[MOSEK] Stupid things when using mosek
查看>>
程序实例---栈的顺序实现和链式实现
查看>>
服务的使用
查看>>
Oracle 用户与模式
查看>>
MairDB 初始数据库与表 (二)
查看>>
拥在怀里
查看>>
chm文件打开,有目录无内容
查看>>
whereis、find、which、locate的区别
查看>>
一点不懂到小白的linux系统运维经历分享
查看>>
桌面支持--打不开网页上的pdf附件解决办法(ie-tools-compatibility)
查看>>
nagios监控windows 改了NSclient++默认端口 注意事项
查看>>