var win;
if (!uwn) {
win = Ext.create('widget.window', {
width : 400,
closable : false, //窗体关闭按钮隐藏
height : 150,
draggable : false, //禁止用户移动窗体
resizable : false, //禁止用户调整窗体大小
layout : 'border',
items : [ fs ] //fs为window里面的组件
});
}
win.setVisible(true);