<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
    xmlns:controls="com.dougmccune.controls.*" viewSourceURL="srcview/index.html">
    <mx:Script>
        <![CDATA[
            import mx.controls.Alert;
        ]]>
    </mx:Script>
    
    <mx:VBox width="100%" height="100%" >
        <mx:Panel horizontalAlign="center" paddingTop="10" paddingBottom="10" width="100%" height="100%"
            title="Monkey Patched Event Listener List">
            <mx:Button id="button" label="Button 1" click="Alert.show('test')"  />
            
            <mx:Spacer height="20" />
            
            <mx:Label text="Listeners for Button 1:" />
            <mx:DataGrid id="grid" dataProvider="{button.eventListeners}" width="100%" height="100%" />
        </mx:Panel>
        
        <mx:Button label="Remove All Listeners on Button 1" click="button.removeAllEventListeners()" />
        
        
    </mx:VBox>
    
</mx:Application>