如何更改 Flex 4 Radiobutton 选定的 fontWeight

发布于 2024-11-04 18:47:44 字数 412 浏览 2 评论 0原文

我已经四处寻找了一段时间,但找不到任何东西。在 Flex 中,我需要能够将选定的 RadioButton 的 fontWeight 更改为粗体。因此,当选择 RadioButton 时,它会调用 AS3 中的一个函数来设置所选 RadioButton 的 fontWeight...

valveRadioGroup.addEventListener(Event.CHANGE, changeRadioHandler);

private function changeRadioHandler(event:Event):void {         
    //change this RadioButton's fontWeight to bold
}

当未选择它时,它还需要恢复到正常的 fontWeight。有谁知道这是否可能?谢谢!

I have been searching around for a while now, and cant find anything. In Flex, I need to be able to change the fontWeight of a RadioButton that is selected to bold. So, when a RadioButton is selected, it would call a function in AS3 that would set the fontWeight of that selected RadioButton...

valveRadioGroup.addEventListener(Event.CHANGE, changeRadioHandler);

private function changeRadioHandler(event:Event):void {         
    //change this RadioButton's fontWeight to bold
}

It would also need to revert back to its normal fontWeight when it is not selected. Does anyone know if this is possible? Thanks!

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

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

发布评论

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

评论(1

难理解 2024-11-11 18:47:44

只需实现您自己的 RadioButtonSkin (复制现有的)并更改其中的 Label 声明:

<s:Label id="labelDisplay" fontWeight.selectedStates="bold"
         textAlign="start"
         verticalAlign="middle"
         maxDisplayedLines="1"
         left="18" right="0" top="3" bottom="3" verticalCenter="2" />

您可以使用 CSS 或直接使用 skinClass 属性。

Just implement your own RadioButtonSkin (make a copy of existing one) and change Label declaration there:

<s:Label id="labelDisplay" fontWeight.selectedStates="bold"
         textAlign="start"
         verticalAlign="middle"
         maxDisplayedLines="1"
         left="18" right="0" top="3" bottom="3" verticalCenter="2" />

You can apply this skin using CSS or directly with skinClass attribute.

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