如何弹出一个覆盖整个屏幕的窗口?
我有以下代码:
应用程序.js
this.__panel = new myApp.MyPanel();
this.__panel.open();
MyPanel.js
qx.Class.define("myApp.MyPanel",
{
extend : qx.ui.window.Window,
construct : function()
{
this.base(arguments, "My Panel");
// adjust size
this.setWidth(800);
this.setHeight(480);
}
});
我希望窗口不是 800 x 480,而是全屏打开,没有标题和关闭按钮。我怎样才能做到这一点?