[原创工具] ListView 调色盘 (Free)

说明:ListView 调色盘,用来快速调整 ListView Style 的颜色,能导出 Style 本文,及另存 *.style 或 *.fsf 文件。

适用:Android, iOS, Windows, OSX(由主选单选取)

下载 (2016/05/25) :[原创]Delphi_Berlin_ListView_调色盘_v1.1.3_by_龟山Aone.zip

下载 (2015/04/20) :[原创]ListView调色盘(by龟山阿卍).zip (for XE8)

v1.1.3载图(for Delphi Berlin 10.1)

[原创工具] ListView 调色盘 (Free)

v1.0.0 载图(for XE8)

[原创工具] ListView 调色盘 (Free)

[原创工具] ListView 调色盘 (Free)

应用:

// for Delphi Berlin 10.1
procedure TForm1.FormCreate(Sender: TObject);
begin
// 一定要在 OnCreate 里载入并设定 ListView Style
TStyleManager.SetStyleFromFile('new.fsf'); // 另存 Style 的文件
ListView1.StyleLookup := 'listviewstyle_new';
end; // for XE8
procedure TForm1.FormCreate(Sender: TObject);
begin
// 一定要在 OnCreate 里载入并设定 ListView Style
TStyleManager.LoadFromFile('new.fsf'); // 另存 Style 的文件
ListView1.StyleLookup := 'listviewstyle_new'; // ListView 一旦设定 StyleLookup 后,就无法改变(原因请看官方 ListView 源码)
end;

应用二:透明 ListView

[原创工具] ListView 调色盘 (Free)

上一篇:【阿里云新品发布·周刊】第17期:App Hub重磅发布,打造云原生“高速公路”上的应用加油站


下一篇:iOS开发之#iPhone6与iPhone6Plus适配#Xcode6.0/Xcode6.1上传应用过程中一些变动以及#解决方案#