1
我正在Flash Builder 4.5中創建一個虛擬移動應用程序。在應用程序代碼中,我使用了TextArea,並且我在朗姆酒時間添加並刪除了TextArea。現在我想將TextArea背景顏色設置爲黑色,將字體顏色設置爲白色。設置Flash Builder 4.5移動應用程序TextArea背景顏色爲黑色,字體顏色爲白色
我該怎麼做?
我正在Flash Builder 4.5中創建一個虛擬移動應用程序。在應用程序代碼中,我使用了TextArea,並且我在朗姆酒時間添加並刪除了TextArea。現在我想將TextArea背景顏色設置爲黑色,將字體顏色設置爲白色。設置Flash Builder 4.5移動應用程序TextArea背景顏色爲黑色,字體顏色爲白色
我該怎麼做?
我必須說這不是直接的,但你要找的風格不是backgroundColor
,而是contentBackgroundColor。它適用於所有延伸至SkinnableTextBase的組件。
<s:TextArea color="0xffffff" contentBackgroundColor="0x000000" />