您的位置:首页 > Web前端

Starling Feathers Controls PanelScreen

2014-09-12 14:35 337 查看
说明:

The PanelScreen component is simply a combination between the Panel component and the Screen component.

示例:

package
{
import feathers.controls.PanelScreen;

public class CustomScreen extends PanelScreen
{
public function CustomScreen()
{
this.addEventListener( FeathersEventType.INITIALIZE, initializeHandler );
}

private function initializeHandler( event:Event ):void
{
//runs once when screen is first added to the stage.
//a good place to add children and customize the layout
}
}
}

效果:

无。

更多说明参考:
http://wiki.starling-framework.org/feathers/panel-screen
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息