开发者

when maximizing Panel,how to make the map within Panel growing synchronizely?

开发者 https://www.devze.com 2022-12-21 22:29 出处:网络
I have a map in a panel.When maximizing the panel,the map remain the smaller size.How to make the map growing synchronizely with the Panel?

I have a map in a panel.When maximizing the panel,the map remain the smaller size.How to make the map growing synchronizely with the Panel?

When maximizing the Panel,I added Resize Effects.How to apply Resize effects on the Map when the extent of the map changing?

It seems to me that I should dispatch extentChange event when maximizing the panel.

Could anyone give me some hint?

Much Thanks!

开发者_开发百科

(I'm very young in flex learning)

Best,Shuo


If your inner map/panel has percent widths/heights, it should resize with it automatically. Make sure it looks like this:

<mx:Panel id="outer" width="100%" height="100%">
    <!-- percent sizes on map (panel is just for example) -->
    <mx:Panel id="inner" width="100%" height="100%"/>
</mx:Panel>

... not this (explicit):

<mx:Panel id="inner" width="400" height="500"/>

... or this (measured):

<mx:Panel id="inner"/>

Let me know if that works.

Best, Lance

0

精彩评论

暂无评论...
验证码 换一张
取 消