Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Flex 3 构建一个带有多个选项的按钮栏。是否可以在我的按钮标签上加下划线?
只需设置按钮的 textDecoration 属性。
<s:Button width="15%" height="32%" label="myButton" click="myButton_clickHandler(event)" textDecoration="underline"/>
也适用于按钮栏。
<s:ButtonBar textDecoration="underline"> </s:ButtonBar>