现在的位置: 首页 > 综合 > 正文

对话框实例

2018年02月12日 ⁄ 综合 ⁄ 共 429字 ⁄ 字号 评论关闭

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">

<mx:Script>
<![CDATA[
import mx.controls.Alert;

public function chLable(obj:Object):void
{
if(obj.detail == Alert.OK)
{
btn.label = "数据已经被删除";
}
}
public function showAlert():void
{
Alert.show("确定要删除么","警告",Alert.OK|Alert.CANCEL);
}
]]>
</mx:Script>
<mx:Button x="274" y="184" label="删除" fontSize="12" id="btn" click="showAlert();"/>

</mx:Application>

【上篇】
【下篇】

抱歉!评论已关闭.