Custom Client Event Wizard that sets the Event Name

  • 11 February 2010
  • 1 reply
  • 0 views

Badge +5

The standard Default Client Event wizard prompts for an Event Name in the dialog, then sets the name of the event to that when moving to the next page.


How can this be accomplished in a custom Client Event Wizard?


I already have a property and edit control; I just need to know how (and where) to set the name.


1 reply

Badge +5

Never mind - I figured it out.


In the WizardPage.xaml.cs, add the following to OnDeactivate():


  (base.DataObject as MyClientEventEvent).Name = txtEventName.Text;


(Assuming you have that TextBox defined.)

Reply