1 namespace AdaptiveTopologySample
4 using System
.Collections
.ObjectModel
;
5 using System
.Windows
.Navigation
;
8 /// Used to manage the state of a particular Wizard, including:
9 /// 1) If completed, whether it was accepted or canceled (.Result)
10 /// 2) The data that was collected by the Wizard (.Data).
12 public class WizardContext
17 public WizardContext(WizardResult result
, object data
) {
22 public WizardResult Result
24 get { return this.result; }
25 set { this.result = value; }
30 get { return this.data; }
31 set { this.data = value; }