码迷,mamicode.com
首页 > 其他好文 > 详细

VCL从RES中读取皮肤

时间:2018-03-22 15:33:00      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:style   info   done   源文件   int   omr   正式   png   添加   

技术分享图片

将皮肤文件添加到Resources中,resourcetype必须设置为VCLSTYLE,在工程文件中添加vcl.themes,vcl.styles两个单元就可以在程序启用时直接从资源文件中读取皮肤文件

var

lvstyle: TStyleManager.TStyleServicesHandle;

begin

try

// TStyleManager.SetStyle(TStyleManager.LoadFromFile(‘TabletLight.vsf‘));

// DONE -c Task:正式发布时把皮肤编译进res文件当中 2017.12.07

lvstyle := TStyleManager.LoadFromResource(HInstance, ‘skinTableLight‘);

if lvstyle <> nil then

TStyleManager.SetStyle(lvstyle);

except

 

end;

end;

技术分享图片

VCL从RES中读取皮肤

标签:style   info   done   源文件   int   omr   正式   png   添加   

原文地址:https://www.cnblogs.com/jspdelphi/p/8623990.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!