说明: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)
v1.0.0 载图(for XE8)
应用:
// 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