VCLSkin Demo For TBX
Dwonload TBX Demo project (760K)
This is VCLSkin demo for TBX2.1.
run demo , click "Open" button to change skin file.
Use Vclskin in TBX2.1:
1.just add TBXVCLSkinTheme.pas,rmkThemes.pas in your application.
2.add "TTBXDockablePanel=Panel" in skindata.skin3rd if it not exist. 3.Add code in Onformcreate event:
procedure TForm1.FormCreate(Sender: TObject);
begin
//..... you code
// add these code
TBXVCLSkinTheme.fsd:=Skindata1;
TBXSetTheme('VCLSKIN');
end;
|