我需要在面板控件内放置一个窗口控件并将窗口约束在此面板内。
这是我恢复的代码:
Ext.define('App.view.MainWindow', {
extend: 'Ext.container.Viewport',
alias: 'widget.mainwindow',
layout: 'vbox',
items: [
{
xtype: 'panel',
height: 50,
width: '100%',
layout: 'hbox'
},
{
xtype: 'panel',
height: 400,
width: '100%',
layout: 'hbox',
items:[
window1 = Ext.create('Ext.window.Window', {autoShow:true, width:90}),
window2 = Ext.create('Ext.window.Window', {autoShow:true, width:400})
]
}
],
使用此代码,两个窗口都出现在彼此的顶部。
谢谢。