0

我在 API 文档中找不到可以使 Appcelerator 桌面应用程序窗口固定大小的属性。换句话说,我不希望用户能够调整窗口大小。

有谁知道这样的属性是否存在?

4

1 回答 1

0

页面上的示例中,他们只是在窗口中设置了创建参数“可调整大小:false”。

这些看起来是你想做的最好的选择。

maximizable: true||false
minimizable: true||false
  closeable: true||false
  resizable: true||false
 fullscreen: true||false

下面是使用每个选项的调用

Titanium.UI.createWindow({
  id: "propertyWindow",
  url: "app://second_page.html",
  title: "My New Window",
  contents: "<html>foo!</html>"
  baseURL: "app://page_url"
  x: 300,
  y: 400,
  width: 500,
  minWidth: 500,
  maxWidth: 500,
  height: 500,
  minHeight: 500,
  maxHeight: 500,
  maximizable: true,
  minimizable: true,
  closeable: true,
  resizable: true,
  fullscreen: false,
  maximized: false,
  minimized: false,
  usingChrome: true,
  topMost: false,
  visible: true,
  transparentBackground: false,
  transparency: false
});
于 2011-03-17T16:23:07.500 回答