1

我有一个扩展类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 文档?

参考:qx.ui.window.Window

4

1 回答 1

0

要设置qx.ui.window.Window不可调整大小(禁用调整大小),请在构造函数中添加以下行:

this.setResizable(false, false, false, false);

注意:我使用的是qooxdoo v2.1.1

于 2013-04-17T04:26:15.497 回答