var myWin = new Ext.Window({
height : 100,
width : 200,
maximizable : true,
items : [ {
xtype : 'button',
text : 'myButton'
// align : center
} ]
});
myWin.show();
这是我的代码。我想将按钮对齐到中心,我知道有办法做到这一点,但它们有点长而且很棘手,有一个简单的解决方案,如align : center
或类似的东西,应该对齐按钮或文本字段中心?
答案 0 :(得分:2)
插入buttonAlign: 'center',
,它应居中 - 我认为默认值为right
。请参阅this example。
答案 1 :(得分:2)
你可以试试这个。这是一种方式(我添加窗口的图片)
Ext.define('MyApp.view.MyWindow', {
extend: 'Ext.window.Window',
height: 137,
width: 233,
layout: {
align: 'middle',
pack: 'center',
type: 'hbox'
},
title: 'My Window',
initComponent: function() {
var me = this;
Ext.applyIf(me, {
items: [
{
xtype: 'button',
text: 'MyButton'
}
]
});
me.callParent(arguments);
}
});