Esempio n. 1
0
        object AirSpeedPanel_U_FlashFuncCallBack(object sender, ExternalInterfaceCall e)
        {
            switch (e.FunctionName)
            {
            case "SetMaxValue":
                arg = new Object[2];
                Popup popup = new Popup(0, arg, TypeCode.Int32);
                popup.list.AddRow("MaxValue", "100000");

                popup.U_PopupClosed += new PopupClosedEventHandler(popup_PopupClosed);
                popup.ShowDialog();

                break;
            }
            return(null);
        }
 public ExternalInterfaceCallEventArgs(ExternalInterfaceCall functionCall)
     : base()
 {
     _functionCall = functionCall;
 }
Esempio n. 3
0
 public ExternalInterfaceCallEventArgs(ExternalInterfaceCall functionCall)
     : base()
 {
     _functionCall = functionCall;
 }