public AboutViewModelBase()
 {
     _manifestAppInfo = new ManifestAppInfo();
     if (IsInDesignMode)
     {
         _about        = "SampleAbout";
         _buy          = "SampleBuy";
         _buyTheApp    = "If you prefer the full version blah awesome blah blah please buy this thing please blah.";
         _companyUrl   = "http://freakingawesomesample.co.uk.dot.org";
         _copyright    = "(c) 2011 #WpWinNl";
         _review       = "SampleReview";
         _reviewTheApp =
             "If you like this app please blah rate blah whatever blah lorum ipsum and whatever text you like here blah highly appreciated.";
         _support        = "SampleSupport";
         _supportMessage =
             "For technical support, blah blah blah more sample text, don't hesitate to contact me at: [email protected].";
         _supportEmail    = "*****@*****.**";
         _otherapps       = "other apps";
         _shareapp        = "share app";
         _shareappmessage = "Great Phone7 app";
     }
 }
        public AboutViewModelBase()
        {
            ManifestInfo    = new ManifestAppInfo();
            OperatingSystem = new EasClientDeviceInformation().OperatingSystem;

            if (IsInDesignMode)
            {
                about        = "about*";
                buy          = "buy*";
                buyTheApp    = "If you prefer the full version blah awesome blah blah please buy this thing please blah.";
                companyUrl   = "http://freakingawesomesample.co.uk.dot.org";
                copyright    = "(c) 2014 John Doe";
                review       = "review*";
                reviewTheApp =
                    "If you like this app please blah rate blah whatever blah lorum ipsum and whatever text you like here blah highly appreciated.*";
                support        = "support*";
                supportMessage =
                    "For technical support, blah blah blah more sample text, don't hesitate to contact me at: [email protected].*";
                supportEmail    = "*****@*****.**";
                otherapps       = "other apps*";
                shareapp        = "share app";
                shareappmessage = "Great app";
            }
        }
Beispiel #3
0
 public UpgradeBehavior()
     : base()
 {
     _appInfo = new ManifestAppInfo();
 }
 protected override void OnSetup()
 {
     appInfo = new ManifestAppInfo();
     CheckUpgrade();
 }