public MainPage()
 {
     this.InitializeComponent();
     controller           = new Controllers.RedditController(this);
     authController       = new Controllers.AuthenticationController(this);
     PostList.ItemsSource = subRedditsObs;
     loadReddit();
 }
예제 #2
0
 public PostPage()
 {
     this.InitializeComponent();
     controller = new Controllers.RedditController(this);
     CommentList.ItemsSource = commentsObs;
 }