Sencha Touch开发入门2

1.函数的加载

Ext.application({
    name: 'Sencha',


    launch: function () {

//代码略

                                      }

                              });


2.组件的创建。有两种方式:create和new。

var panel=Ext.create('Ext.Panel',{//代码略

                                  });


var panel=new Ext.Panel({ //代码略

                                  });

3.添加组件也有两种方式:xtype和create

//实例1

{

id:'newPanel',

xtype:'panel',

title:'面板',

html:'<p>面板</p>'

}

//实例2

Ext.create('Ext.Panel',{

id:'newPanel',

title:'面板',

html:'<p>面板</p>'

});

使用xtype配置选项创建组件的最大好处在于可以使用组件的延迟渲染的特性,提高程序性能。

你可能感兴趣的:(Sencha Touch开发入门2)