<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
				layout="absolute"
				verticalAlign="middle"
				backgroundColor="white"
				initialize="init()">
	<mx:Script>
		<![CDATA[
			import mx.controls.Alert;
			import mx.events.CloseEvent;
			private function init():void
			{
				Ind.addEventListener(Event.CHANGE,Ind_changeHandler);
			}
			protected function Ind_changeHandler(event:Event):void
			{
				Alert.show("Ind");
			}
		]]>
	</mx:Script>
		<mx:RadioButton x="337" y="42" groupName="showModel" label="Individual" />
</mx:Application>

相关文章:

  • 2021-09-28
  • 2021-09-13
  • 2021-08-19
  • 2021-04-14
  • 2021-10-10
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-11-05
  • 2021-11-05
  • 2021-06-03
  • 2021-09-08
  • 2021-10-24
相关资源
相似解决方案