首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

九宫格格局练习

2012-09-02 
九宫格布局练习Ext.create(Ext.Container, {fullscreen: true,layout: vbox,defaults: {flex: 1,width

九宫格布局练习

Ext.create('Ext.Container', {    fullscreen: true,    layout: 'vbox',defaults: {                flex: 1,                width: '100%',                padding: 10,                defaults: {                    flex: 1,                    height: '100%',                    margin: 10                }                },    items: [        {                xtype: 'panel',                layout: 'hbox',                items:[                    {xtype:'button',text:'按钮1'},                    {xtype:'button',text:'按钮2'},{xtype:'button',text:'按钮3'},                                    ],  flex: 1        },        {            xtype: 'panel',                layout: 'hbox',                items:[                    {xtype:'button',text:'按钮1'},                    {xtype:'button',text:'按钮2'},{xtype:'button',text:'按钮3'},                                   ],  flex: 1        }, {           xtype: 'panel',                layout: 'hbox',                items:[                    {xtype:'button',text:'按钮1'},                    {xtype:'button',text:'按钮2'},{xtype:'button',text:'按钮3'},                                   ],  flex: 1        }, {            xtype: 'panel',                layout: 'hbox',                items:[                    {xtype:'button',text:'按钮1'},                    {xtype:'button',text:'按钮2'},{xtype:'button',text:'按钮3'},                                   ],  flex: 1        }    ]});

热点排行