我有以下代码(文本输入)。
<s:TextInput id="label"
text="just testing"
width="100%"
height="200"
contentBackgroundColor="#aaaaaa"
styleName="normalText">
</s:TextInput>
我很难找到如何将文本(“只是测试”)与顶部对齐。我检查了 Adobe 文档,但似乎没有可用于此属性的垂直对齐属性。
http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/mx/controls/TextInput.html
我意识到有一个 textarea 组件可用,但由于性能原因,我需要使用 textinput。
topPadding 似乎适用于 mx
<mx:TextInput
id="txt"
paddingTop="5"
text="I am Vertically aligned text"
textAlign="center"
width="250"
height="250">
</mx:TextInput>
任何提示将非常感谢。
谢谢!