Skip to content

Instantly share code, notes, and snippets.

@halllo
Created July 23, 2011 21:26
Show Gist options
  • Save halllo/1101903 to your computer and use it in GitHub Desktop.
Save halllo/1101903 to your computer and use it in GitHub Desktop.
MainPageVM
halllowelt.wordpress.comusing System;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
namespace SilverlightRunDemo.VM
{
public class MainPage : SilverlightRun.ViewModel.ColdViewModel<MainPage>
{
[SilverlightRun.Tombstoning.SurvivesRestart]
public string Word1 { get; set; }
[SilverlightRun.Tombstoning.SurvivesTombstoning]
public string Word2 { get; set; }
public MainPage() : base(App.ViewModels.Get<SilverlightRun.IPhoneService>())
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment