Ⅰ 大侠帮帮我 flex 4.1中给Vbox 添加背景图片 可是没有backgroudimge这个属性了
别用vbox了,在spark主题下,它不支持这个样式了。
你可以使用bordercontainer + verticallayout来实现同样的布局,而且它是有backgroundImage的
Ⅱ Flex中如何对Text控件设置背景颜色
兄弟可以试试:如下代码.
上层容器的背景颜色可以定义Text的控件的颜色,当然,VBox只是上层容器的一种,还可以选择HBox等.
<mx:VBox backgroundColor="red">
<mx:Text id="text" />
</mx:VBox>
Ⅲ flex怎么做表格
flex制作表格方法:
用itemRenderer
<mx:DataGrid dataProvider="{aryColl}">
<mx:columns>
<mx:DataGridColumn headerText="checkBox" width="80">
<mx:itemRenderer>
<fx:Component>
<mx:VBox height="22">
<fx:Script>
<![CDATA[
加任意控件checkbox button 什么都行
</一堆东西>
Ⅳ flex 登录界面
父容器的背景图片大小 和 子容器的大小,二者毫无关系……
Ⅳ extjs中怎样为一个panel设置背景色
是这样设置 bodyStyle: 'background:#ffc; padding:10px;',
var resultsPanel = Ext.create('Ext.panel.Panel', {
title: 'Results',
width: 600,
height: 400,
renderTo: Ext.getBody(),
bodyStyle: 'background:#ffc; padding:10px;',
layout: {
type: 'vbox', // Arrange child items vertically
align: 'stretch', // Each takes up full width
padding: 5
},
items: [{ // Results grid specified as a config object with an xtype of 'grid'
xtype: 'grid',
columns: [{header: 'Column One'}], // One header just for show. There's no data,
store: Ext.create('Ext.data.ArrayStore', {}), // A mmy empty data store
flex: 1 // Use 1/3 of Container's height (hint to Box layout)
}, {
xtype: 'splitter' // A splitter between the two child items
}, { // Details Panel specified as a config object (no xtype defaults to 'panel').
title: 'Details',
bodyPadding: 10,
items: [{
fieldLabel: 'Data item',
xtype: 'textfield'
}], // An array of form fields
flex: 2 // Use 2/3 of Container's height (hint to Box layout)
}]
});