开发者

Flex 3.5 - Panel Title Text Padding

开发者 https://www.devze.com 2023-03-14 03:33 出处:网络
Is there anyway for me to adjust the padding (left and right) of t开发者_开发技巧he text within a Panel Title in Felx 3.5?You can set the textIndent style, but that will only affect the \"padding\" to

Is there anyway for me to adjust the padding (left and right) of t开发者_开发技巧he text within a Panel Title in Felx 3.5?


You can set the textIndent style, but that will only affect the "padding" to the left. I haven't looked into it, but you may also be able to set the paddingLeft and paddingRight styles as well.

From Flex Examples:

<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2008/01/14/indenting-a-flex-panel-controls-title/ -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="vertical"
        verticalAlign="middle"
        backgroundColor="white">

    <mx:Style>
        .myPanelTitle {
            textIndent: 50;
        }
    </mx:Style>

    <mx:Panel title="Lorem ipsum"
            titleStyleName="myPanelTitle"
            titleIcon="@Embed('assets/images/accept.png')"
            width="200">
        <mx:Text text="The quick brown fox jumped over the lazy dog."
                width="100%" />
    </mx:Panel>

</mx:Application>
0

精彩评论

暂无评论...
验证码 换一张
取 消