禁用WindowedApplication在Flex中调整大小

cal*_*inf 3 apache-flex air flex3

我试图让它成为Flex中的WindowedApplication不可调整大小.但是,resizable是类的只读公共变量.

如何使用户无法调整Flex应用程序的大小(在Adobe Air中运行)?

dir*_*tly 9

如果你的项目被称为foo一个foo-app.xml也将自动生成.这是一个应用程序配置文件.编辑此文件,特别是更改:

<!-- Whether the user can resize the window. Optional. Default true. -->
<!-- <resizable></resizable> -->
Run Code Online (Sandbox Code Playgroud)

至:

<!-- Whether the user can resize the window. Optional. Default true. -->
<resizable>false</resizable>
Run Code Online (Sandbox Code Playgroud)

(注意:此属性通常被注释掉,默认值为true.)