Flex中TitleWindow组件的title属性的字体大小

发布于 2024-10-20 20:30:35 字数 165 浏览 6 评论 0原文

如何在 TitleWindow 组件中设置标题属性(标题)的字体大小?

如果我使用 fontSize 属性,它会设置 TitleWindow 中所有组件的字体大小,这不是我想要的。我只想将其设置为标题。

我正在使用 Flex 3

谢谢

How can I set font size of title property (header) in TitleWindow component?

If I use fontSize property, it sets the font size for all components in TitleWindow, which is not what I want. I only want to set it for the title.

I'm using Flex 3

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

千纸鹤 2024-10-27 20:30:35

设置 title-style-name css 属性,然后在使用该 css 类名的块中分配字体大小。

TitleWindow
{
    title-style-name: "myTitle";
}

.myTitle
{
   font-size: 16;
}

Set the title-style-name css attribute, and then assign the font size in a block that uses that css class name.

TitleWindow
{
    title-style-name: "myTitle";
}

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