public BSCS()
 {
     this.InitializeComponent();
     this.navigationHelper = new NavigationHelper(this);
     this.navigationHelper.LoadState += navigationHelper_LoadState;
     this.navigationHelper.SaveState += navigationHelper_SaveState;
 }
 public MyFiles()
 {
     //Create a new instance of the FilesViewModel class
     this.InitializeComponent();
     this.navigationHelper = new NavigationHelper(this);
     this.navigationHelper.LoadState += navigationHelper_LoadState;
     this.navigationHelper.SaveState += navigationHelper_SaveState;      
 }
 public SchoolActivities()
 {
     this.InitializeComponent();
     this.navigationHelper = new NavigationHelper(this);
     this.navigationHelper.LoadState += navigationHelper_LoadState;
     this.navigationHelper.SaveState += navigationHelper_SaveState;
     AddImageIntoList();
 }
 public Login()
 {
     this.InitializeComponent();
     this.navigationHelper = new NavigationHelper(this);
     this.navigationHelper.LoadState += navigationHelper_LoadState;
 }
 public MainPage()
 {
         this.InitializeComponent();
         messages = new StringBuilder();
         this.navigationHelper = new NavigationHelper(this);
         this.navigationHelper.LoadState += navigationHelper_LoadState;
         this.DataContext = App.CurrentUser;
         iMessages = new ObservableCollection<ChatMessage>();
         iMessages.CollectionChanged += Messages_CollectionChanged;
         getfacebookstream();
         GetTweets();
         loadInstaFeed();
         //readMessage();
 }