The following example shows how you can set the corner radius on a ButtonBar control in Flex by setting the buttonStyleName and cornerRadius styles.
Full code after the jump.
<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2008/01/07/setting-the-button-corner-radius-in-a-flex-buttonbar-control/ -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="vertical"
verticalAlign="middle"
backgroundColor="white">
<mx:Style>
.myCustomButtonStyleName {
cornerRadius: 16;
}
</mx:Style>
<mx:Array id="arr">
<mx:Object label="Button" />
<mx:Object label="ButtonBar" />
<mx:Object label="CheckBox" />
<mx:Object label="ColorPicker" />
</mx:Array>
<mx:ButtonBar id="buttonBar"
buttonStyleName="myCustomButtonStyleName"
dataProvider="{arr}"
height="32" />
</mx:Application>
View source is enabled in the following example.
If you want to set the buttonStyleName style using an external .CSS file or <mx:Style /> block, you can use code similar to the following snippet:
<mx:Style>
ButtonBar {
buttonStyleName: myCustomButtonStyleName;
}
.myCustomButtonStyleName {
cornerRadius: 16;
}
</mx:Style>





0 Responses to “Setting the button corner radius in a Flex ButtonBar control”
Leave a Reply