public PlayerPageViewModel(Game.Plot plot)
     : base(plot)
 {
     this._Resources        = new ResourceDictionary();
     this._Resources.Source = new Uri("/Gibbed.DragonAge.SaveGenerator;component/ImageResources.xaml",
                                      UriKind.RelativeOrAbsolute);
 }
 protected BasePageViewModel(Game.Plot plot)
 {
     this._Plot = plot;
 }
Beispiel #3
0
 public LandsmeetPageViewModel(Game.Plot plot)
     : base(plot)
 {
 }
Beispiel #4
0
 public WizardViewModel()
 {
     this._Plot       = new Game.Plot();
     this.CurrentPage = this.Pages[0];
 }
Beispiel #5
0
 protected void CancelGeneration()
 {
     this._Plot = null;
     this.OnRequestClose();
 }
 public BeastPageViewModel(Game.Plot plot)
     : base(plot)
 {
 }
 public SummaryPageViewModel(Game.Plot plot)
     : base(plot)
 {
 }
 public AwakeningPageViewModel(Game.Plot plot)
     : base(plot)
 {
 }
 public ClimaxPageViewModel(Game.Plot plot)
     : base(plot)
 {
 }
 public ParagonPageViewModel(Game.Plot plot)
     : base(plot)
 {
 }
 public DLCPageViewModel(Game.Plot plot)
     : base(plot)
 {
 }
 public UrnPageViewModel(Game.Plot plot)
     : base(plot)
 {
 }
 public EpiloguePageViewModel(Game.Plot plot)
     : base(plot)
 {
 }
Beispiel #14
0
 public ArlPageViewModel(Game.Plot plot)
     : base(plot)
 {
 }
 public CompanionPageViewModel(Game.Plot plot)
     : base(plot)
 {
 }
 public CirclePageViewModel(Game.Plot plot)
     : base(plot)
 {
 }