当前位置:网站首页>Delphi实现的一个文件在线查询显示下载功能
Delphi实现的一个文件在线查询显示下载功能
2022-08-10 08:01:00 【joman5】
一直想做个类似360那样的在线文件检索并下载的功能PC端也就是winform端,今天有空简单实现了此功能,部分代码:
建立一个frame:

设置相关参数信息:
procedure TfMain.getdata;
var
item: TfrFileItem;
i: Integer;
begin
//这里只要设置 好对应的数据结构即可
cleardata;
for i := 0 to 10 do
begin
item := TfrFileItem.Create(self);
item.Name := 'item_' + i.ToString;
// item.Image1.Picture.LoadFromFile()//加载图片信息
item.Title.Caption := '文件名称' + i.ToString;
item.info.Caption := '这里用来进行文件信息描述';
item.pnSize.Caption := '20 M';
item.url := 'http://xxxxxx:8002/ver/testUpdate.zip';
item.Parent := pnContent;
item.Top := item.Height * (i + 1) + 1;
item.Align := alTop;
end;
end;
边栏推荐
猜你喜欢
随机推荐
Summary of ctfshow SSTI knowledge points
VS2013-debug assembly code-generate asm file-structure memory layout-function parameter stack-calling convention
phpstudy开机自启
解决win10win7win8系统找不到指定的模块,注册不了大漠插件的问题
.NET-7.WPF学习经验总结
Rust learning: 6.4_ enumeration of composite types
pytest之parametrize参数化
[机缘参悟-65]:《兵者,诡道也》-7-三十六计解读-败战计
PLSQL学习第四天
详解构建mock服务最方便的神器——Moco
Synchronization lock synchronized traces the source
winget包管理器
What is an MQTT gateway?What is the difference with traditional DTU?
Discussion on Chinese Fuzzy Retrieval in Databases
winget package manager
ctfshow SSTI 知识点总结
PLSQL学习第二天
Power function Exponential function Logarithmic function
SQL SERVER 数据库,表的数据发生增删改,该表的索引会在ldf日志中记录吗?
941 · 滑动拼图









