flex4获取当前窗口的长度与宽度的要领

让新窗口看上去像新的一页,于是就投机想让PopUp的窗口界面巨细自适应屏幕,下面是flex4 获取当前窗口的长度与宽度示例,需要的伴侣可以参考下

之前为了实现flex网页自适应屏幕巨细

看到网上的谜底是

Application.application.width

Application.application.height

可是这是合用于<mx:Applicationg/>的,在flex4后,发起合用<s:Application/>,发明Application.application已经不存在了
this.stage.stageWidth

我做了一个登岸界面,没有用state并且做成组件PopUp新窗口,这样有利于今后重复应用,可是又想新窗口看上去像新的一页,于是就投机想让PopUp的窗口界面巨细自适应屏幕。

我的做法是

复制代码 代码如下:


<s:BorderContainer xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
xmlns:local="*"

preinitialize="loginPreinit()"
initialize="loginInit()">


复制代码 代码如下:


private function loginPreinit():void
{
this.width=this.stage.stageWidth;
this.height=this.stage.stageHeight;
}


这样PopUp的窗口也自适应屏幕巨细了。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wsdpfz.html