Adobe Flex - LinkBar 字体大小似乎没有改变!

发布于 2024-08-05 20:01:45 字数 512 浏览 2 评论 0原文

我有一个链接到视图堆栈的 LinkBar。但是,当我更改 LinkBar 的字体大小时,当我运行它时,字体大小根本没有改变!我尝试过使用 CSS 更改字体,但它并没有改变字体大小!有什么想法吗?这是代码:

<mx:Canvas x="0" y="0" width="30%" height="100%">
    <mx:Label x="10" y="10" text="Help" fontSize="20"/>
    <mx:LinkBar x="10" y="49" dataProvider="viewstack1" 
                direction="vertical" width="175" height="276" 
                selectedIndex="0"
                fontSize="30">
    </mx:LinkBar>
</mx:Canvas>

如何更改字体大小?!这让我发疯。

I have a LinkBar which is linked to a viewstack. However, as I change the fontsize of my LinkBar, when I run it, the font size does not change at all! I've tried changing the font using CSS and it doesnt change the font size! Any ideas? Here is the code:

<mx:Canvas x="0" y="0" width="30%" height="100%">
    <mx:Label x="10" y="10" text="Help" fontSize="20"/>
    <mx:LinkBar x="10" y="49" dataProvider="viewstack1" 
                direction="vertical" width="175" height="276" 
                selectedIndex="0"
                fontSize="30">
    </mx:LinkBar>
</mx:Canvas>

How can I change the font size?! This is driving me crazy.

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

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

发布评论

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

评论(1

秉烛思 2024-08-12 20:01:45

您可以更改 CSS 类中的 fontSize,并将该类添加为“linkBut​​tonStyleName”样式的值,或者您可以迭代在 LinkBar 中创建的所有 LinkBut​​ton 并手动设置样式(例如,在 AS3 中)代码)。

话虽这么说, fontSize 应该被继承,所以我不确定为什么你的代码不起作用。只是提供一些选项。

Either you can change the fontSize in a CSS class, and add that class as the value for the "linkButtonStyleName" style, or you can iterate through all the LinkButtons that have been created in the LinkBar and set the style manually (e.g., in AS3 code).

That being said, fontSize is supposed to be inherited so I'm not sure why your code doesn't work. Just providing some options.

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