如何更改Delphi XE2中默认的FireMonkey样式
我看到一个 youtube 视频(不记得是哪个),其中用户更改了 Delphi XE2 中的一个选项,以更改整个 FireMonkey 应用程序的默认样式。经过多次搜寻,我找不到这个选项。
“样式”的 IDE Insight 向我显示“项目选项”下的“默认样式 - 自定义样式(表单)”。但除非我特别厚,否则没有这样的选择。
I saw a youtube video (can't remember which one) where the user changed an option in Delphi XE2 to change the default style for an entire FireMonkey application. After much hunting I can't find the option.
IDE Insight for 'style' shows me 'Default Style - Custom Styles (Forms)' under 'Project Options'. But unless I'm being particularly thick, there's no such option there.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
VCL 风格和 Firemonkey 风格有着根本的不同。
因此,我不确定他们应该使用相同的名字。
VCL 样式
TStyleManager.SetStyle('StyleName');
添加到代码中TStyleManager
类Firemonkey Styles
编辑器位于 IDE 内部
TStyleBook
资源属性编辑器访问也可以通过右键单击任何视觉控件并选择其中之一来访问
注意:这两个菜单选项仅在桌面应用程序中可用,在移动应用程序中不可用。
进入编辑器后,您可以选择
Load..
按钮来更改所选TStylebook的样式。如果整个应用程序使用相同的 TStyleBook,它将改变整个应用程序。TStyleBook
在 Windows 7 上,默认情况下,VCL 和 Firemonkey 的所有样式都放置在
C:\Users\Public\Documents\RAD Studio\9.0\Styles
目录一个要点是直接答案,但我觉得我必须给出很长的答案才能帮助其他人。
VCL Styles and Firemonkey Styles are fundamentally different.
Because of that I am not sure they should have used the same name.
VCL Styles
TStyleManager.SetStyle('StyleName');
to your codeTStyleManager
classFiremonkey Styles
Editor is Internal to the IDE
TStyleBook
Resource Property EditorCan also be accessed by Right click on any visual control and selecting either
Note: These two menu choices are only available in desktop apps, not mobile apps.
Once in editor you can select the
Load..
button to change the style for the selected TStylebook. If the entire application is using the same TStyleBook it will change the whole application.TStyleBook
On windows 7 all of the styles both VCL and Firemonkey by default are placed in the
C:\Users\Public\Documents\RAD Studio\9.0\Styles
directoryOne bullet point is a direct answer, but I felt like I had to give the long answer to help others.