wxmfly 发表于 2013-2-7 18:42:34

如何使用Flex Text

<?xml version="1.0"?><!-- Simple example to demonstrate the Text control. --><!--如何使用Flex TextMyShareBook.cn 翻译--><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">    <mx:Panel title="Text Control Example" height="75%" width="75%"         paddingTop="10" paddingLeft="10" paddingRight="10">      <mx:Text width="100%">            <mx:text>                This is a multiline, non-editable text component.               If you need an editable multiline component, use TextArea.            </mx:text>      </mx:Text>      <mx:Text width="100%">            <mx:htmlText>                <!]>            </mx:htmlText>      </mx:Text>   </mx:Panel></mx:Application>
页: [1]
查看完整版本: 如何使用Flex Text