说明: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)

相关文章:

  • 2022-02-09
  • 2022-12-23
  • 2021-05-28
  • 2021-08-01
  • 2021-12-27
  • 2022-03-08
  • 2022-12-23
  • 2021-07-12
猜你喜欢
  • 2021-05-27
  • 2021-05-28
  • 2021-06-06
  • 2021-09-24
  • 2021-05-26
  • 2021-12-18
相关资源
相似解决方案