コード例 #1
0
 public TopTenSpotsViewModel()
 {
     this.shredderService = service;
     this.LoadPlaces();
     this.spotsLoading = true;
     getCommentsCommand = new RelayCommand(getComments);
 }
コード例 #2
0
 public TopTenSpotsViewModel()
 {
     this.shredderService = service;
     this.LoadPlaces();
     this.spotsLoading  = true;
     getCommentsCommand = new RelayCommand(getComments);
 }
コード例 #3
0
 public PlaceViewModel(IShredderService service)
 {
     this.shredderService = service;
     LoadPlacesCommand = new RelayCommand(LoadPlaces);
     SavePlaceCommand = new RelayCommand(SavePlace);
     NewPlace = new Place();
 }
コード例 #4
0
 public PlaceViewModel(IShredderService service)
 {
     this.shredderService = service;
     LoadPlacesCommand    = new RelayCommand(LoadPlaces);
     SavePlaceCommand     = new RelayCommand(SavePlace);
     NewPlace             = new Place();
 }
コード例 #5
0
 public MainPageViewModel()
 {
     this.shredderService = service;
     this.LoadPictures();
     this.PhotosLoading = true;
     this.LoadPlaces();
     this.PlacesLoading = true;
     this.LoadVideos();
     this.VideosLoading = true;
 }
コード例 #6
0
        public MainPageViewModel()
        {
            this.shredderService = service;
            this.LoadPictures();
            this.PhotosLoading = true;
            this.LoadPlaces();
            this.PlacesLoading = true;
            this.LoadVideos();
            this.VideosLoading = true;

        }
コード例 #7
0
 public TopTenVideosViewModel()
 {
     this.shredderService = service;
     this.LoadVideos();
     this.videosLoading = true;
 }
コード例 #8
0
 public DetailPhotoPageViewModel()
 {
     this.shredderService = service;
 }
コード例 #9
0
 public TopTenVideosViewModel()
 {
     this.shredderService = service;
     this.LoadVideos();
     this.videosLoading = true;
 }
コード例 #10
0
 public TopTenPicturesViewModel()
 {
     this.shredderService = service;
     this.LoadPictures();
     this.PhotosLoading = true;
 }
コード例 #11
0
 public DetailVideoPageViewModel()
 {
     this.shredderService = service;
 }
コード例 #12
0
 public DetailSpotPageViewModel()
 {
     this.shredderService = service;
 }
コード例 #13
0
 public TopTenPicturesViewModel()
 {
     this.shredderService = service;
     this.LoadPictures();
     this.PhotosLoading = true;
 }
コード例 #14
0
 public DetailMapPageViewModel()
 {
     this.shredderService = service;
     this.LoadPlaces();
 }
コード例 #15
0
 public DetailSpotPageViewModel()
 {
     this.shredderService = service;
 }
コード例 #16
0
 public DetailMapPageViewModel()
 {
     this.shredderService = service;
     this.LoadPlaces();         
 }