首页 > 其他分享 >flex点击弹出警告

flex点击弹出警告

时间:2023-03-05 10:04:21浏览次数:25  
标签:flex show NO controls Alert 点击 import 警告 null


<?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 addToCart():void
{
Alert.show("你确定要退出系统吗?","确认",Alert.YES|Alert.NO,null,null);
}
]]>
</mx:Script>
<mx:Label text="hello"/>
<mx:Button label="Add to Cart" click="addToCart()"/>
</mx:Application>




效果如下图所示



flex点击弹出警告_xml


标签:flex,show,NO,controls,Alert,点击,import,警告,null
From: https://blog.51cto.com/u_15990596/6101107

相关文章