コード例 #1
0
        public AppContext(IPlatformServices platformServices, IView view)
        {
            View             = view;
            PlatformServices = platformServices;
            Settings         = new SettingsVm(platformServices);
            Downloads        = new DownloadManager(this, view);
            //WatchList = new WatchList(this);

            Settings.SettingsChanged += _settings_SettingsChanged;

            Init();

            TheMovieDb.Initialise(TmdbApiKey, View.PreferedCulture.TwoLetterISOLanguageName, PlatformServices);
        }