我有一个扩展qx.ui.window.Window
的课程。
我设法通过以下代码将其显示在屏幕上:
this.__panel = new my_project.MyPanel();
this.__panel.center();
// then I open it through a button click ( codes irrelevant, omitted )
在MyPanel()
的构造函数中,我有以下内容:
this.base(arguments, "My Panel");
this.setShowMaximize(false);
this.setShowMinimize(false);
this.setWidth(800);
this.setHeight(480);
var layout = new qx.ui.layout.Grid(0,0);
this.setLayout(layout);
this.setContentPadding(0);
我错过了什么让它不可调整大小?我是否忽略了API文档?
答案 0 :(得分:0)
要设置qx.ui.window.Window
不可调整大小(禁用调整大小),请在构造函数中添加以下行:
this.setResizable(false, false, false, false);
注意:我正在使用qooxdoo v2.1.1