0
我是sencha新手。我正在嘗試向面板添加一個圖標,但我的代碼無法工作。將圖標添加到Sencha的面板中
Ext.define('components.ImagePanel', {
extend: 'Ext.Panel',
initialize: function() {
this.callParent(arguments);
var image = {
xtype: "image",
src: 'icon.png',
width:100,
height:100
},
scope: this
};
this.add([image]);
});
我在做什麼錯了?
對不起,沒有奏效。 –