我在app.js写了这样的代码,为什么按钮无法调整大小? 我已经设置了resizable:true,但是它无法工作......可拖动的工作。 谁能帮我?感谢
Ext.Loader.setConfig({
enabled: true
});
Ext.application({
views: [
'MyButton',
'MyTabPanel',
'MyPanel3'
],
name: 'MyApp',
launch: function() {
Ext.create('Ext.button.Button', {
renderTo: Ext.getBody(),
resizable: true,
text: 'hello',
draggable:true
});
}
});
答案 0 :(得分:0)
这个简单的代码段适用于我
Ext.application({
launch: function() {
Ext.create('Ext.button.Button', {
renderTo: Ext.getBody(),
resizable: true,
text: 'hello',
draggable:true
});
}
});