如何更改Delphi XE2中默认的FireMonkey样式

发布于 2024-12-05 05:01:06 字数 178 浏览 1 评论 0原文

我看到一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陌路黄昏 2024-12-12 05:01:06

VCL 风格和 Firemonkey 风格有着根本的不同。

因此,我不确定他们应该使用相同的名字。

VCL 样式

  • 编辑方式:工具|样式设计器(外部应用程序)
  • 样式扩展名 .VSF
  • 格式为二进制
  • 可以通过:项目选项|应用程序| 进行设置外观(只需将 TStyleManager.SetStyle('StyleName'); 添加到代码中
  • 即可通过 TStyleManager

Firemonkey Styles

  • 进行样式的运行时控制

    编辑器位于 IDE 内部

    • 通过 TStyleBook 资源属性编辑器访问
    • 也可以通过右键单击任何视觉控件并选择其中之一来访问

      • 编辑自定义样式...
      • 编辑默认样式...
        注意:这两个菜单选项仅在桌面应用程序中可用,在移动应用程序中不可用。
    • 进入编辑器后,您可以选择Load..按钮来更改所选TStylebook的样式。如果整个应用程序使用相同的 TStyleBook,它将改变整个应用程序。

  • 样式扩展 .style
  • 格式类似于
  • 样式的 DFM 运行时控件,可以出现在每个控件上,并通过 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

  • Edited through: Tools|Style Designer (External App)
  • Style Extension .VSF
  • Format is Binary
  • Can be set through: Project Options|Application| Appearance (Which just add TStyleManager.SetStyle('StyleName'); to your code
  • Runtime control of styles can occur through the TStyleManager class

Firemonkey Styles

  • Editor is Internal to the IDE

    • Accessed through TStyleBook Resource Property Editor
    • Can also be accessed by Right click on any visual control and selecting either

      • Edit Custom Style...
      • Edit Default Style...
        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.

  • Style Extension .style
  • Format is like a DFM
  • Runtime control of styles can occur on each control and through the 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 directory

One bullet point is a direct answer, but I felt like I had to give the long answer to help others.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文