void ShowFailePopup_Excuted(object sender, CommandEventArgs args) { FailePopup ep1 = new FailePopup(); ApexBroker.GetShell().ShowPopup(ep1); }
void AddContactCommand_Executed(object sender, CommandEventArgs args) { contactView.FocusContactName(); }
/// <summary> /// Handles the Executed event of the GoToCasinoCommand control. /// </summary> /// <param name="sender">The source of the event.</param> /// <param name="args">The <see cref="Apex.MVVM.CommandEventArgs"/> instance containing the event data.</param> void GoToCasinoCommand_Executed(object sender, CommandEventArgs args) { GoToCasinoCommand.DoExecute(null); }
/// <summary> /// Handles the Executed event of the ShowPopupCommand. /// </summary> /// <param name="sender">The source of the event.</param> /// <param name="args">The <see cref="Apex.MVVM.CommandEventArgs"/> instance containing the event data.</param> void ShowPopupCommand_Executed(object sender, CommandEventArgs args) { // Get the shell and show the example popup. ApexBroker.GetShell().ShowPopup(new ExamplePopup()); }
void ResetLightCheck_Executed(object sender, CommandEventArgs args) { ResetLightCheck(); }
void SaveLightCheck_Executed(object sender, CommandEventArgs args) { SaveLightCheck(null); }
void ShowPopupCommandDetector1_Executed(object sender, CommandEventArgs args) { //throw new NotImplementedException(); ApexBroker.GetShell().ShowPopup(new DetectorPopup()); }
void ShowPopupCommandSouthStaight_Executed(object sender, CommandEventArgs args) { //ExamplePopup ep3 = new ExamplePopup(); //ep3.RadioSelectedEvent += new RadioSelectedHandler(ep3_RadioSelectedEvent); }
void ShowPopupCommandSouthOther_Executed(object sender, CommandEventArgs args) { //ExamplePopup ep2 = new ExamplePopup(); //ep2.RadioSelectedEvent += new RadioSelectedHandler(ep2_RadioSelectedEvent); //ApexBroker.GetShell().ShowPopup(ep2); }
void DegradationCommand_Executed(object sender, CommandEventArgs args) { //throw new NotImplementedException(); }
protected void InvokeExecuted(CommandEventArgs args) { CommandEventHandler executed = Executed; // Call the executed event. if (executed != null) executed(this, args); }