2016-02-23 67 views

回答

4

您可以將VCL組件與XE10一起使用,以便您使用本機擴展樣式。

你可以檢查此:

http://docwiki.embarcadero.com/RADStudio/Seattle/en/VCL_Styles_Overview

Delphi XE2 VCL styles tutorial - how to change the style at runtime

但是要小心德爾福的版本你正在使用的,因爲內河碼頭改一下如何一點點TStyleManager應用樣式(預加載,運行時,資源......有很少有應用它的方法)。

例如:

var 
    StyleResource : string; // filename of the style  
begin 
    TStyleManager.LoadFromResource(HInstance, StyleResource); 
相關問題