├── .editorconfig ├── .gitattributes ├── .gitignore ├── Description ├── AuxiliaryTools.md ├── Install.md ├── README_EN-US.md ├── README_HE-IL.md ├── README_ZH-CN.md └── StudyReferenceCode.md ├── Directory.Build.props ├── GetStoreApp.slnx ├── GetStoreApp ├── Assets │ ├── Cover.png │ ├── Embed │ │ ├── LICENSE │ │ ├── Mile.Aria2.conf │ │ ├── cookie.xml │ │ ├── url.xml │ │ └── wu.xml │ ├── GetStoreApp.ico │ ├── Icon │ │ ├── Control │ │ │ ├── AppManager.png │ │ │ ├── AppUpdate.png │ │ │ ├── Download.png │ │ │ ├── Home.png │ │ │ ├── Settings.png │ │ │ ├── Store.png │ │ │ ├── Web.png │ │ │ └── WinGet.png │ │ ├── Installer │ │ │ └── Package.png │ │ └── ShellMenu │ │ │ └── PowerShell.ico │ ├── Installer │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-24.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-32.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ ├── MainApp │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-24.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-32.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ └── StoreLogo.scale-400.png ├── Extensions │ ├── Backdrop │ │ ├── ControlBackdropController.cs │ │ └── MaterialBackdrop.cs │ └── DataType │ │ ├── Classes │ │ ├── AppInformation.cs │ │ ├── AppLaunchArguments.cs │ │ ├── DownloadProgress.cs │ │ └── PackageCatalogInformation.cs │ │ ├── Constant │ │ └── ConfigKey.cs │ │ └── Enums │ │ ├── AppLaunchKind.cs │ │ ├── AppManagerResultKind.cs │ │ ├── AppNaviagtionArgs.cs │ │ ├── AppSortRuleKind.cs │ │ ├── AppUpdateResultKind.cs │ │ ├── CleanKind.cs │ │ ├── CompletedResultKind.cs │ │ ├── DataCopyKind.cs │ │ ├── DownloadProgressState.cs │ │ ├── DuplicatedDataKind.cs │ │ ├── InstalledAppsResultKind.cs │ │ ├── OperationKind.cs │ │ ├── PackageOperationKind.cs │ │ ├── PackageOperationResultKind.cs │ │ ├── PackageVolumeResultKind.cs │ │ ├── SearchAppsResultKind.cs │ │ ├── UpdateAppResultKind.cs │ │ ├── UpgradableAppsResultKind.cs │ │ ├── WinGetOperationKind.cs │ │ ├── WinGetPaneKind.cs │ │ └── WinGetSourceEditKind.cs ├── GetStoreApp.csproj ├── GetStoreApp.manifest ├── GetStoreApp.res ├── Helpers │ ├── Backdrop │ │ └── ToolTipBackdropHelper.cs │ ├── Controls │ │ └── XamlTreeHelper.cs │ ├── Converters │ │ ├── ValueCheckConverterHelper.cs │ │ └── ValueConverterHelper.cs │ ├── Root │ │ ├── CopyPasteHelper.cs │ │ ├── DeleteFileHelper.cs │ │ ├── FeatureAccessHelper.cs │ │ ├── HashAlgorithmHelper.cs │ │ ├── IOHelper.cs │ │ ├── InfoHelper.cs │ │ ├── NetWorkHelper.cs │ │ ├── ProcessHelper.cs │ │ ├── RuntimeHelper.cs │ │ ├── ShutdownHelper.cs │ │ ├── SpeedHelper.cs │ │ └── VolumeSizeHelper.cs │ ├── Store │ │ ├── HttpParseHelper.cs │ │ ├── HttpRequestHelper.cs │ │ ├── QueryLinksHelper.cs │ │ └── SearchStoreHelper.cs │ └── WinGet │ │ └── WinGetFactoryHelper.cs ├── MainApp.xaml ├── MainApp.xaml.cs ├── Models │ ├── AppInfoModel.cs │ ├── AppListEntryModel.cs │ ├── AppUpdateModel.cs │ ├── AvailableVersionModel.cs │ ├── ChannelModel.cs │ ├── CompletedModel.cs │ ├── ControlItemModel.cs │ ├── DownloadSchedulerModel.cs │ ├── DownloadingModel.cs │ ├── HistoryModel.cs │ ├── InfoBarModel.cs │ ├── InstalledAppsModel.cs │ ├── LanguageModel.cs │ ├── NavigationModel.cs │ ├── PackageModel.cs │ ├── PackageOperationModel.cs │ ├── PackageVolumeModel.cs │ ├── QueryLinksModel.cs │ ├── RequestModel.cs │ ├── SearchAppsModel.cs │ ├── SearchStoreModel.cs │ ├── StartupArgsModel.cs │ ├── StoreRegionModel.cs │ ├── TraceCleanupModel.cs │ ├── TypeModel.cs │ ├── UpgradableAppsModel.cs │ └── WinGetSourceModel.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ └── launchsettings.json ├── Services │ ├── Download │ │ ├── Aria2Service.cs │ │ ├── BitsService.cs │ │ ├── DeliveryOptimizationService.cs │ │ ├── DownloadSchedulerService.cs │ │ └── DownloadStorageService.cs │ ├── History │ │ └── HistoryStorageService.cs │ ├── Root │ │ ├── BadgeNotificationService.cs │ │ ├── DesktopLaunchService.cs │ │ ├── GlobalNotificationService.cs │ │ ├── LocalSettingsService.cs │ │ ├── LogService.cs │ │ ├── ResourceService.cs │ │ └── ToastNotificationService.cs │ └── Settings │ │ ├── AlwaysShowBackdropService.cs │ │ ├── AppInstallService.cs │ │ ├── BackdropService.cs │ │ ├── CancelAutoUpdateService.cs │ │ ├── DownloadOptionsService.cs │ │ ├── InstallModeService.cs │ │ ├── LanguageService.cs │ │ ├── LinkFilterService.cs │ │ ├── NotificationService.cs │ │ ├── QueryLinksModeService.cs │ │ ├── ShellMenuService.cs │ │ ├── StoreRegionService.cs │ │ ├── ThemeService.cs │ │ ├── TopMostService.cs │ │ ├── TraceCleanupService.cs │ │ └── WinGetConfigService.cs ├── Strings │ ├── en-us │ │ ├── AppInformation.resjson │ │ ├── AppList.resjson │ │ ├── AppManager.resjson │ │ ├── AppUpdate.resjson │ │ ├── Application.resjson │ │ ├── Completed.resjson │ │ ├── Dialog.resjson │ │ ├── Download.resjson │ │ ├── Downloading.resjson │ │ ├── Home.resjson │ │ ├── Installer.resjson │ │ ├── NotificationTip.resjson │ │ ├── Pinner.resjson │ │ ├── QueryLinks.resjson │ │ ├── Resources.resjson │ │ ├── SearchStore.resjson │ │ ├── Settings.resjson │ │ ├── SettingsAbout.resjson │ │ ├── SettingsAdvanced.resjson │ │ ├── SettingsAppInstall.resjson │ │ ├── SettingsDownload.resjson │ │ ├── SettingsGeneral.resjson │ │ ├── SettingsItem.resjson │ │ ├── SettingsPackageVolume.resjson │ │ ├── SettingsStoreAndUpdate.resjson │ │ ├── SettingsWinGet.resjson │ │ ├── SettingsWinGetSource.resjson │ │ ├── ShellMenu.resjson │ │ ├── Store.resjson │ │ ├── WebView.resjson │ │ ├── WinGet.resjson │ │ ├── WinGetAppsVersionInfo.resjson │ │ ├── WinGetAppsVersionOptions.resjson │ │ ├── WinGetInstalled.resjson │ │ ├── WinGetSearch.resjson │ │ ├── WinGetUpgrade.resjson │ │ └── Window.resjson │ ├── he-il │ │ ├── AppInformation.resjson │ │ ├── AppList.resjson │ │ ├── AppManager.resjson │ │ ├── AppUpdate.resjson │ │ ├── Application.resjson │ │ ├── Completed.resjson │ │ ├── Dialog.resjson │ │ ├── Download.resjson │ │ ├── Downloading.resjson │ │ ├── Home.resjson │ │ ├── Installer.resjson │ │ ├── NotificationTip.resjson │ │ ├── Pinner.resjson │ │ ├── QueryLinks.resjson │ │ ├── Resources.resjson │ │ ├── SearchStore.resjson │ │ ├── Settings.resjson │ │ ├── SettingsAbout.resjson │ │ ├── SettingsAdvanced.resjson │ │ ├── SettingsAppInstall.resjson │ │ ├── SettingsDownload.resjson │ │ ├── SettingsGeneral.resjson │ │ ├── SettingsItem.resjson │ │ ├── SettingsPackageVolume.resjson │ │ ├── SettingsStoreAndUpdate.resjson │ │ ├── SettingsWinGet.resjson │ │ ├── SettingsWinGetSource.resjson │ │ ├── ShellMenu.resjson │ │ ├── Store.resjson │ │ ├── WebView.resjson │ │ ├── WinGet.resjson │ │ ├── WinGetAppsVersionInfo.resjson │ │ ├── WinGetAppsVersionOptions.resjson │ │ ├── WinGetInstalled.resjson │ │ ├── WinGetSearch.resjson │ │ ├── WinGetUpgrade.resjson │ │ └── Window.resjson │ ├── ru-ru │ │ ├── AppInformation.resjson │ │ ├── AppList.resjson │ │ ├── AppManager.resjson │ │ ├── AppUpdate.resjson │ │ ├── Application.resjson │ │ ├── Completed.resjson │ │ ├── Dialog.resjson │ │ ├── Download.resjson │ │ ├── Downloading.resjson │ │ ├── Home.resjson │ │ ├── Installer.resjson │ │ ├── NotificationTip.resjson │ │ ├── Pinner.resjson │ │ ├── QueryLinks.resjson │ │ ├── Resources.resjson │ │ ├── SearchStore.resjson │ │ ├── Settings.resjson │ │ ├── SettingsAbout.resjson │ │ ├── SettingsAdvanced.resjson │ │ ├── SettingsAppInstall.resjson │ │ ├── SettingsDownload.resjson │ │ ├── SettingsGeneral.resjson │ │ ├── SettingsItem.resjson │ │ ├── SettingsPackageVolume.resjson │ │ ├── SettingsStoreAndUpdate.resjson │ │ ├── SettingsWinGet.resjson │ │ ├── SettingsWinGetSource.resjson │ │ ├── ShellMenu.resjson │ │ ├── Store.resjson │ │ ├── WebView.resjson │ │ ├── WinGet.resjson │ │ ├── WinGetAppsVersionInfo.resjson │ │ ├── WinGetAppsVersionOptions.resjson │ │ ├── WinGetInstalled.resjson │ │ ├── WinGetSearch.resjson │ │ ├── WinGetUpgrade.resjson │ │ └── Window.resjson │ └── zh-hans │ │ ├── AppInformation.resjson │ │ ├── AppList.resjson │ │ ├── AppManager.resjson │ │ ├── AppUpdate.resjson │ │ ├── Application.resjson │ │ ├── Completed.resjson │ │ ├── Dialog.resjson │ │ ├── Download.resjson │ │ ├── Downloading.resjson │ │ ├── Home.resjson │ │ ├── Installer.resjson │ │ ├── NotificationTip.resjson │ │ ├── Pinner.resjson │ │ ├── QueryLinks.resjson │ │ ├── Resources.resjson │ │ ├── SearchStore.resjson │ │ ├── Settings.resjson │ │ ├── SettingsAbout.resjson │ │ ├── SettingsAdvanced.resjson │ │ ├── SettingsAppInstall.resjson │ │ ├── SettingsDownload.resjson │ │ ├── SettingsGeneral.resjson │ │ ├── SettingsItem.resjson │ │ ├── SettingsPackageVolume.resjson │ │ ├── SettingsStoreAndUpdate.resjson │ │ ├── SettingsWinGet.resjson │ │ ├── SettingsWinGetSource.resjson │ │ ├── ShellMenu.resjson │ │ ├── Store.resjson │ │ ├── WebView.resjson │ │ ├── WinGet.resjson │ │ ├── WinGetAppsVersionInfo.resjson │ │ ├── WinGetAppsVersionOptions.resjson │ │ ├── WinGetInstalled.resjson │ │ ├── WinGetSearch.resjson │ │ ├── WinGetUpgrade.resjson │ │ └── Window.resjson ├── Views │ ├── Dialogs │ │ ├── AppInformationDialog.xaml │ │ ├── AppInformationDialog.xaml.cs │ │ ├── AppRunningDialog.xaml │ │ ├── AppRunningDialog.xaml.cs │ │ ├── ClosingWindowDialog.xaml │ │ ├── ClosingWindowDialog.xaml.cs │ │ ├── DeleteFileDialog.xaml │ │ ├── DeleteFileDialog.xaml.cs │ │ ├── DesktopStartupArgsDialog.xaml │ │ ├── DesktopStartupArgsDialog.xaml.cs │ │ ├── FileInformationDialog.xaml │ │ ├── FileInformationDialog.xaml.cs │ │ ├── LicenseDialog.xaml │ │ ├── LicenseDialog.xaml.cs │ │ ├── PackageVolumeAddDialog.xaml │ │ ├── PackageVolumeAddDialog.xaml.cs │ │ ├── PackageVolumeInfoDialog.xaml │ │ ├── PackageVolumeInfoDialog.xaml.cs │ │ ├── RebootDialog.xaml │ │ ├── RebootDialog.xaml.cs │ │ ├── RestartAppsDialog.xaml │ │ ├── RestartAppsDialog.xaml.cs │ │ ├── TraceCleanupPromptDialog.xaml │ │ ├── TraceCleanupPromptDialog.xaml.cs │ │ ├── UpdateAppDialog.xaml │ │ ├── UpdateAppDialog.xaml.cs │ │ ├── WinGetAppsVersionDialog.xaml │ │ ├── WinGetAppsVersionDialog.xaml.cs │ │ ├── WinGetSourceEditDialog.xaml │ │ └── WinGetSourceEditDialog.xaml.cs │ ├── NotificationTips │ │ ├── CopyPasteMainNotificationTip.xaml │ │ ├── CopyPasteMainNotificationTip.xaml.cs │ │ ├── OperationResultNotificationTip.xaml │ │ └── OperationResultNotificationTip.xaml.cs │ ├── Pages │ │ ├── AppInformationPage.xaml │ │ ├── AppInformationPage.xaml.cs │ │ ├── AppListPage.xaml │ │ ├── AppListPage.xaml.cs │ │ ├── AppManagerPage.xaml │ │ ├── AppManagerPage.xaml.cs │ │ ├── AppUpdatePage.xaml │ │ ├── AppUpdatePage.xaml.cs │ │ ├── CompletedPage.xaml │ │ ├── CompletedPage.xaml.cs │ │ ├── DownloadPage.xaml │ │ ├── DownloadPage.xaml.cs │ │ ├── DownloadingPage.xaml │ │ ├── DownloadingPage.xaml.cs │ │ ├── HomePage.xaml │ │ ├── HomePage.xaml.cs │ │ ├── QueryLinksPage.xaml │ │ ├── QueryLinksPage.xaml.cs │ │ ├── SearchStorePage.xaml │ │ ├── SearchStorePage.xaml.cs │ │ ├── SettingsAboutPage.xaml │ │ ├── SettingsAboutPage.xaml.cs │ │ ├── SettingsAdvancedPage.xaml │ │ ├── SettingsAdvancedPage.xaml.cs │ │ ├── SettingsAppInstallPage.xaml │ │ ├── SettingsAppInstallPage.xaml.cs │ │ ├── SettingsDownloadPage.xaml │ │ ├── SettingsDownloadPage.xaml.cs │ │ ├── SettingsGeneralPage.xaml │ │ ├── SettingsGeneralPage.xaml.cs │ │ ├── SettingsItemPage.xaml │ │ ├── SettingsItemPage.xaml.cs │ │ ├── SettingsPackageVolumePage.xaml │ │ ├── SettingsPackageVolumePage.xaml.cs │ │ ├── SettingsPage.xaml │ │ ├── SettingsPage.xaml.cs │ │ ├── SettingsStoreAndUpdatePage.xaml │ │ ├── SettingsStoreAndUpdatePage.xaml.cs │ │ ├── SettingsWinGetPage.xaml │ │ ├── SettingsWinGetPage.xaml.cs │ │ ├── SettingsWinGetSourcePage.xaml │ │ ├── SettingsWinGetSourcePage.xaml.cs │ │ ├── StorePage.xaml │ │ ├── StorePage.xaml.cs │ │ ├── WinGetAppsVersionInfoPage.xaml │ │ ├── WinGetAppsVersionInfoPage.xaml.cs │ │ ├── WinGetAppsVersionOptionsPage.xaml │ │ ├── WinGetAppsVersionOptionsPage.xaml.cs │ │ ├── WinGetInstalledPage.xaml │ │ ├── WinGetInstalledPage.xaml.cs │ │ ├── WinGetPage.xaml │ │ ├── WinGetPage.xaml.cs │ │ ├── WinGetSearchPage.xaml │ │ ├── WinGetSearchPage.xaml.cs │ │ ├── WinGetUpgradePage.xaml │ │ └── WinGetUpgradePage.xaml.cs │ └── Windows │ │ ├── MainWindow.xaml │ │ └── MainWindow.xaml.cs └── WindowsAPI │ ├── ComTypes │ ├── BG_ERROR_CONTEXT.cs │ ├── BG_JOB_NOTIFICATION_TYPE.cs │ ├── BG_JOB_PRIORITY.cs │ ├── BG_JOB_PROGRESS.cs │ ├── BG_JOB_PROXY_USAGE.cs │ ├── BG_JOB_STATE.cs │ ├── BG_JOB_TYPE.cs │ ├── BackgroundCopyCallback.cs │ ├── DODownloadProperty.cs │ ├── DODownloadState.cs │ ├── DODownloadStatusCallback.cs │ ├── DO_DOWNLOAD_STATUS.cs │ ├── FileOperationFlags.cs │ ├── IBackgroundCopyCallback.cs │ ├── IBackgroundCopyError.cs │ ├── IBackgroundCopyJob.cs │ ├── IBackgroundCopyManager.cs │ ├── IDODownload.cs │ ├── IDODownloadStatusCallback.cs │ ├── IDOManager.cs │ ├── IFileOperation.cs │ ├── IOpenControlPanel.cs │ ├── IShellItem.cs │ └── SIGDN.cs │ ├── PInvoke │ ├── Advapi32 │ │ ├── Advapi32Library.cs │ │ ├── LUID.cs │ │ ├── SHTDN_REASON.cs │ │ └── TOKEN_PRIVILEGES.cs │ ├── Comctl32 │ │ ├── Comctl32Library.cs │ │ └── SUBCLASSPROC.cs │ ├── Kernel32 │ │ ├── CreateToolhelp32SnapshotFlags.cs │ │ ├── EDesiredAccess.cs │ │ ├── GEO_ENUMNAMEPROC.cs │ │ ├── Kernel32Library.cs │ │ ├── PROCESSENTRY32.cs │ │ └── SYSGEOCLASS.cs │ ├── Ole32 │ │ ├── CLSCTX.cs │ │ └── Ole32Library.cs │ ├── Rstrtmgr │ │ ├── RM_SHUTDOWN_TYPE.cs │ │ ├── RM_UNIQUE_PROCESS.cs │ │ ├── RM_WRITE_STATUS_CALLBACK.cs │ │ └── RstrtmgrLibrary.cs │ ├── Shell32 │ │ ├── Shell32Library.cs │ │ └── WindowShowStyle.cs │ ├── User32 │ │ ├── SystemCommand.cs │ │ ├── User32Library.cs │ │ └── WindowMessage.cs │ └── Uxtheme │ │ ├── PreferredAppMode.cs │ │ └── UxthemeLibrary.cs │ └── WinRT │ ├── ABI │ ├── ContentExternalBackdropLink.cs │ ├── ContentExternalBackdropLinkRcwFactoryAttribute.cs │ ├── IContentExternalBackdropLink.cs │ ├── IContentExternalBackdropLinkMethods.cs │ ├── IContentExternalBackdropLinkStatics.cs │ └── IContentExternalBackdropLinkStaticsMethods.cs │ ├── ContentExternalBackdropLink.cs │ ├── IContentExternalBackdropLink.cs │ └── IContentExternalBackdropLinkStatics.cs ├── GetStoreAppInstaller ├── Extensions │ ├── Backdrop │ │ ├── ControlBackdropController.cs │ │ └── MaterialBackdrop.cs │ └── DataType │ │ ├── Classes │ │ ├── DependencyAppInformation.cs │ │ ├── DependencyInformation.cs │ │ ├── ManifestInformation.cs │ │ ├── PackageInformation.cs │ │ ├── PackageManifestInformation.cs │ │ └── ResourceManagement.cs │ │ ├── Constant │ │ └── ConfigKey.cs │ │ ├── Enums │ │ ├── PackageFileType.cs │ │ ├── PriDescriptorFlags.cs │ │ ├── QualifierType.cs │ │ └── ResourceValueType.cs │ │ └── Methods │ │ └── BinaryReaderExtension.cs ├── GetStoreAppInstaller.csproj ├── GetStoreAppInstaller.manifest ├── GetStoreAppInstaller.res ├── Helpers │ ├── Backdrop │ │ └── ToolTipBackdropHelper.cs │ ├── Converters │ │ ├── ValueCheckConverterHelper.cs │ │ └── ValueConverterHelper.cs │ └── Root │ │ ├── CopyPasteHelper.cs │ │ └── RuntimeHelper.cs ├── InstallerApp.xaml ├── InstallerApp.xaml.cs ├── Models │ ├── ApplicationModel.cs │ ├── CapabilityModel.cs │ ├── DependencyModel.cs │ ├── InstallDependencyModel.cs │ ├── StringModel.cs │ └── TargetDeviceFamilyModel.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ └── launchsettings.json ├── Services │ ├── Root │ │ ├── LocalSettingsService.cs │ │ ├── LogService.cs │ │ ├── ResourceService.cs │ │ └── ToastNotificationService.cs │ └── Settings │ │ ├── AlwaysShowBackdropService.cs │ │ ├── AppInstallService.cs │ │ ├── BackdropService.cs │ │ ├── LanguageService.cs │ │ └── ThemeService.cs ├── Views │ ├── NotificationTips │ │ ├── CopyPasteInstallerNotificationTip.xaml │ │ └── CopyPasteInstallerNotificationTip.xaml.cs │ └── Windows │ │ ├── InstallerWindow.xaml │ │ └── InstallerWindow.xaml.cs └── WindowsAPI │ ├── ComTypes │ ├── APPX_BUNDLE_PAYLOAD_PACKAGE_TYPE.cs │ ├── APPX_CAPABILITY_CLASS_TYPE.cs │ ├── APPX_FOOTPRINT_FILE_TYPE.cs │ ├── COMDLG_FILTERSPEC.cs │ ├── GRAPHICS_EFFECT_PROPERTY_MAPPING.cs │ ├── IAppxBundleFactory2.cs │ ├── IAppxBundleManifestPackageInfo.cs │ ├── IAppxBundleManifestPackageInfoEnumerator.cs │ ├── IAppxBundleManifestReader.cs │ ├── IAppxBundleReader.cs │ ├── IAppxFactory3.cs │ ├── IAppxFile.cs │ ├── IAppxFilesEnumerator.cs │ ├── IAppxManifestApplication.cs │ ├── IAppxManifestApplicationsEnumerator.cs │ ├── IAppxManifestCapabilitiesEnumerator.cs │ ├── IAppxManifestPackageDependenciesEnumerator.cs │ ├── IAppxManifestPackageDependency.cs │ ├── IAppxManifestPackageDependency2.cs │ ├── IAppxManifestPackageId.cs │ ├── IAppxManifestPackageId2.cs │ ├── IAppxManifestProperties.cs │ ├── IAppxManifestQualifiedResource.cs │ ├── IAppxManifestQualifiedResourcesEnumerator.cs │ ├── IAppxManifestReader.cs │ ├── IAppxManifestReader2.cs │ ├── IAppxManifestReader3.cs │ ├── IAppxManifestTargetDeviceFamiliesEnumerator.cs │ ├── IAppxManifestTargetDeviceFamily.cs │ ├── IAppxPackageReader.cs │ ├── ISequentialStream.cs │ ├── IShellItem.cs │ ├── IShellItemArray.cs │ ├── IStream.cs │ └── SIGDN.cs │ ├── PInvoke │ ├── Comctl32 │ │ ├── Comctl32Library.cs │ │ └── SUBCLASSPROC.cs │ ├── Ole32 │ │ ├── CLSCTX.cs │ │ └── Ole32Library.cs │ ├── SHCore │ │ ├── BSOS_OPTIONS.cs │ │ └── ShCoreLibrary.cs │ ├── Shell32 │ │ ├── Shell32Library.cs │ │ └── WindowShowStyle.cs │ ├── User32 │ │ ├── ChangeFilterFlags.cs │ │ ├── SYSTEMCOMMAND.cs │ │ ├── User32Library.cs │ │ ├── WindowExStyle.cs │ │ ├── WindowLongIndexFlags.cs │ │ ├── WindowMessage.cs │ │ └── WindowStyle.cs │ └── Uxtheme │ │ ├── PreferredAppMode.cs │ │ └── UxthemeLibrary.cs │ └── WinRT │ ├── ABI │ ├── ContentExternalBackdropLink.cs │ ├── ContentExternalBackdropLinkRcwFactoryAttribute.cs │ ├── IContentExternalBackdropLink.cs │ ├── IContentExternalBackdropLinkMethods.cs │ ├── IContentExternalBackdropLinkStatics.cs │ └── IContentExternalBackdropLinkStaticsMethods.cs │ ├── ContentExternalBackdropLink.cs │ ├── IContentExternalBackdropLink.cs │ └── IContentExternalBackdropLinkStatics.cs ├── GetStoreAppNonStorePackage ├── GetStoreAppNonStorePackage.wapproj ├── GetStoreAppNonStorePackage_SignKey.pfx └── Package.appxmanifest ├── GetStoreAppPackage ├── GetStoreAppPackage.wapproj └── Package.appxmanifest ├── GetStoreAppPinner ├── App.xaml ├── App.xaml.cs ├── Extensions │ └── DataType │ │ └── Constant │ │ └── ConfigKey.cs ├── GetStoreAppPinner.csproj ├── GetStoreAppPinner.manifest ├── GetStoreAppPinner.res ├── Helpers │ └── Root │ │ ├── FeatureAccessHelper.cs │ │ ├── HashAlgorithmHelper.cs │ │ └── RuntimeHelper.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ └── launchsettings.json ├── Services │ ├── Root │ │ ├── LocalSettingsService.cs │ │ ├── LogService.cs │ │ └── ResourceService.cs │ └── Settings │ │ ├── LanguageService.cs │ │ └── ThemeService.cs └── Views │ └── Pages │ ├── PinnerPage.xaml │ └── PinnerPage.xaml.cs ├── GetStoreAppShellExtension ├── Commands │ ├── AppInstallAdminCommand.cs │ ├── AppInstallCommand.cs │ ├── EnumExplorerCommand.cs │ ├── PSInstallAdminCommand.cs │ ├── PSInstallCommand.cs │ ├── PSRegisterCommand.cs │ └── RootExplorerCommand.cs ├── Extensions │ └── DataType │ │ └── Constant │ │ └── ConfigKey.cs ├── GetStoreAppShellExtension.csproj ├── Helpers │ └── Root │ │ └── InfoHelper.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Services │ ├── Root │ │ ├── LocalSettingsService.cs │ │ └── ResourceService.cs │ └── Settings │ │ ├── AppInstallService.cs │ │ ├── LanguageService.cs │ │ └── ShellMenuService.cs ├── ShellMenuClassFactory.cs └── WindowsAPI │ ├── ComTypes │ ├── EXPCMDFLAGS.cs │ ├── EXPCMDSTATE.cs │ ├── IClassFactory.cs │ ├── IEnumExplorerCommand.cs │ ├── IExplorerCommand.cs │ ├── IShellItem.cs │ ├── IShellItemArray.cs │ └── SIGDN.cs │ └── PInvoke │ └── Shell32 │ ├── Shell32Library.cs │ └── WindowShowStyle.cs ├── GetStoreAppWebView ├── Extensions │ ├── Backdrop │ │ └── MaterialBackdrop.cs │ └── DataType │ │ ├── Constant │ │ └── ConfigKey.cs │ │ └── Enums │ │ └── WebView2Type.cs ├── GetStoreAppWebView.csproj ├── GetStoreAppWebView.manifest ├── GetStoreAppWebView.res ├── Helpers │ ├── Backdrop │ │ └── ToolTipBackdropHelper.cs │ └── Root │ │ ├── InfoHelper.cs │ │ └── RuntimeHelper.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ └── launchsettings.json ├── Services │ ├── Root │ │ ├── LocalSettingsService.cs │ │ ├── LogService.cs │ │ └── ResourceService.cs │ └── Settings │ │ ├── AlwaysShowBackdropService.cs │ │ ├── BackdropService.cs │ │ ├── DownloadOptionsService.cs │ │ ├── LanguageService.cs │ │ └── ThemeService.cs ├── Views │ ├── Dialogs │ │ ├── BrowserInformationDialog.xaml │ │ ├── BrowserInformationDialog.xaml.cs │ │ ├── ProcessFailedDialog.xaml │ │ └── ProcessFailedDialog.xaml.cs │ └── Windows │ │ ├── WebViewWindow.xaml │ │ └── WebViewWindow.xaml.cs ├── WebViewApp.xaml ├── WebViewApp.xaml.cs └── WindowsAPI │ └── PInvoke │ ├── Comctl32 │ ├── Comctl32Library.cs │ └── SUBCLASSPROC.cs │ ├── User32 │ ├── SYSTEMCOMMAND.cs │ ├── User32Library.cs │ └── WindowMessage.cs │ └── Uxtheme │ ├── PreferredAppMode.cs │ └── UxthemeLibrary.cs ├── Images ├── Logo │ └── Github.png ├── en-us │ ├── About.png │ ├── AppInformation.png │ ├── AppInstaller.png │ ├── AppList.png │ ├── AppUpdate.png │ ├── Completed.png │ ├── Downloading.png │ ├── Home.png │ ├── PackageVolume.png │ ├── Querylinks.png │ ├── SearchStore.png │ ├── WebBrowser.png │ ├── WinGetDataSource.png │ ├── WinGetInstalledApps.png │ ├── WinGetSearchApps.png │ └── WinGetUpgradeApps.png ├── he-il │ ├── About.png │ ├── AppInformation.png │ ├── AppInstaller.png │ ├── AppList.png │ ├── AppUpdate.png │ ├── Completed.png │ ├── Downloading.png │ ├── Home.png │ ├── PackageVolume.png │ ├── Querylinks.png │ ├── SearchStore.png │ ├── WebBrowser.png │ ├── WinGetDataSource.png │ ├── WinGetInstalledApps.png │ ├── WinGetSearchApps.png │ └── WinGetUpgradeApps.png └── zh-hans │ ├── About.png │ ├── AppInformation.png │ ├── AppInstaller.png │ ├── AppList.png │ ├── AppUpdate.png │ ├── Completed.png │ ├── Downloading.png │ ├── Home.png │ ├── PackageVolume.png │ ├── Querylinks.png │ ├── SearchStore.png │ ├── WebBrowser.png │ ├── WinGetDataSource.png │ ├── WinGetInstalledApps.png │ ├── WinGetSearchApps.png │ └── WinGetUpgradeApps.png ├── LICENSE └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/.gitignore -------------------------------------------------------------------------------- /Description/AuxiliaryTools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Description/AuxiliaryTools.md -------------------------------------------------------------------------------- /Description/Install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Description/Install.md -------------------------------------------------------------------------------- /Description/README_EN-US.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Description/README_EN-US.md -------------------------------------------------------------------------------- /Description/README_HE-IL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Description/README_HE-IL.md -------------------------------------------------------------------------------- /Description/README_ZH-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Description/README_ZH-CN.md -------------------------------------------------------------------------------- /Description/StudyReferenceCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Description/StudyReferenceCode.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /GetStoreApp.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp.slnx -------------------------------------------------------------------------------- /GetStoreApp/Assets/Cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Cover.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Embed/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Embed/LICENSE -------------------------------------------------------------------------------- /GetStoreApp/Assets/Embed/Mile.Aria2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Embed/Mile.Aria2.conf -------------------------------------------------------------------------------- /GetStoreApp/Assets/Embed/cookie.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Embed/cookie.xml -------------------------------------------------------------------------------- /GetStoreApp/Assets/Embed/url.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Embed/url.xml -------------------------------------------------------------------------------- /GetStoreApp/Assets/Embed/wu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Embed/wu.xml -------------------------------------------------------------------------------- /GetStoreApp/Assets/GetStoreApp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/GetStoreApp.ico -------------------------------------------------------------------------------- /GetStoreApp/Assets/Icon/Control/AppManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Icon/Control/AppManager.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Icon/Control/AppUpdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Icon/Control/AppUpdate.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Icon/Control/Download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Icon/Control/Download.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Icon/Control/Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Icon/Control/Home.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Icon/Control/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Icon/Control/Settings.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Icon/Control/Store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Icon/Control/Store.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Icon/Control/Web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Icon/Control/Web.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Icon/Control/WinGet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Icon/Control/WinGet.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Icon/Installer/Package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Icon/Installer/Package.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Icon/ShellMenu/PowerShell.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Icon/ShellMenu/PowerShell.ico -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/LargeTile.scale-100.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/LargeTile.scale-125.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/LargeTile.scale-150.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/LargeTile.scale-200.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/LargeTile.scale-400.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/SmallTile.scale-100.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/SmallTile.scale-125.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/SmallTile.scale-150.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/SmallTile.scale-200.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/SmallTile.scale-400.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/Square44x44Logo.altform-unplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/Square44x44Logo.altform-unplated_targetsize-24.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/Installer/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/Installer/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/LargeTile.scale-100.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/LargeTile.scale-125.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/LargeTile.scale-150.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/LargeTile.scale-200.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/LargeTile.scale-400.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/SmallTile.scale-100.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/SmallTile.scale-125.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/SmallTile.scale-150.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/SmallTile.scale-200.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/SmallTile.scale-400.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/MainApp/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/MainApp/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /GetStoreApp/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /GetStoreApp/Extensions/Backdrop/ControlBackdropController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/Backdrop/ControlBackdropController.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/Backdrop/MaterialBackdrop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/Backdrop/MaterialBackdrop.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/DataType/Classes/AppInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/DataType/Classes/AppInformation.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/DataType/Classes/AppLaunchArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/DataType/Classes/AppLaunchArguments.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/DataType/Classes/DownloadProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/DataType/Classes/DownloadProgress.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/DataType/Classes/PackageCatalogInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/DataType/Classes/PackageCatalogInformation.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/DataType/Constant/ConfigKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/DataType/Constant/ConfigKey.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/DataType/Enums/AppLaunchKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/DataType/Enums/AppLaunchKind.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/DataType/Enums/AppManagerResultKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/DataType/Enums/AppManagerResultKind.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/DataType/Enums/AppNaviagtionArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/DataType/Enums/AppNaviagtionArgs.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/DataType/Enums/AppSortRuleKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/DataType/Enums/AppSortRuleKind.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/DataType/Enums/AppUpdateResultKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/DataType/Enums/AppUpdateResultKind.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/DataType/Enums/CleanKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/DataType/Enums/CleanKind.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/DataType/Enums/CompletedResultKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/DataType/Enums/CompletedResultKind.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/DataType/Enums/DataCopyKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/DataType/Enums/DataCopyKind.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/DataType/Enums/DownloadProgressState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/DataType/Enums/DownloadProgressState.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/DataType/Enums/DuplicatedDataKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/DataType/Enums/DuplicatedDataKind.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/DataType/Enums/InstalledAppsResultKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/DataType/Enums/InstalledAppsResultKind.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/DataType/Enums/OperationKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/DataType/Enums/OperationKind.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/DataType/Enums/PackageOperationKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/DataType/Enums/PackageOperationKind.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/DataType/Enums/PackageOperationResultKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/DataType/Enums/PackageOperationResultKind.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/DataType/Enums/PackageVolumeResultKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/DataType/Enums/PackageVolumeResultKind.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/DataType/Enums/SearchAppsResultKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/DataType/Enums/SearchAppsResultKind.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/DataType/Enums/UpdateAppResultKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/DataType/Enums/UpdateAppResultKind.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/DataType/Enums/UpgradableAppsResultKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/DataType/Enums/UpgradableAppsResultKind.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/DataType/Enums/WinGetOperationKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/DataType/Enums/WinGetOperationKind.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/DataType/Enums/WinGetPaneKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/DataType/Enums/WinGetPaneKind.cs -------------------------------------------------------------------------------- /GetStoreApp/Extensions/DataType/Enums/WinGetSourceEditKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Extensions/DataType/Enums/WinGetSourceEditKind.cs -------------------------------------------------------------------------------- /GetStoreApp/GetStoreApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/GetStoreApp.csproj -------------------------------------------------------------------------------- /GetStoreApp/GetStoreApp.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/GetStoreApp.manifest -------------------------------------------------------------------------------- /GetStoreApp/GetStoreApp.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/GetStoreApp.res -------------------------------------------------------------------------------- /GetStoreApp/Helpers/Backdrop/ToolTipBackdropHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Helpers/Backdrop/ToolTipBackdropHelper.cs -------------------------------------------------------------------------------- /GetStoreApp/Helpers/Controls/XamlTreeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Helpers/Controls/XamlTreeHelper.cs -------------------------------------------------------------------------------- /GetStoreApp/Helpers/Converters/ValueCheckConverterHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Helpers/Converters/ValueCheckConverterHelper.cs -------------------------------------------------------------------------------- /GetStoreApp/Helpers/Converters/ValueConverterHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Helpers/Converters/ValueConverterHelper.cs -------------------------------------------------------------------------------- /GetStoreApp/Helpers/Root/CopyPasteHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Helpers/Root/CopyPasteHelper.cs -------------------------------------------------------------------------------- /GetStoreApp/Helpers/Root/DeleteFileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Helpers/Root/DeleteFileHelper.cs -------------------------------------------------------------------------------- /GetStoreApp/Helpers/Root/FeatureAccessHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Helpers/Root/FeatureAccessHelper.cs -------------------------------------------------------------------------------- /GetStoreApp/Helpers/Root/HashAlgorithmHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Helpers/Root/HashAlgorithmHelper.cs -------------------------------------------------------------------------------- /GetStoreApp/Helpers/Root/IOHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Helpers/Root/IOHelper.cs -------------------------------------------------------------------------------- /GetStoreApp/Helpers/Root/InfoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Helpers/Root/InfoHelper.cs -------------------------------------------------------------------------------- /GetStoreApp/Helpers/Root/NetWorkHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Helpers/Root/NetWorkHelper.cs -------------------------------------------------------------------------------- /GetStoreApp/Helpers/Root/ProcessHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Helpers/Root/ProcessHelper.cs -------------------------------------------------------------------------------- /GetStoreApp/Helpers/Root/RuntimeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Helpers/Root/RuntimeHelper.cs -------------------------------------------------------------------------------- /GetStoreApp/Helpers/Root/ShutdownHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Helpers/Root/ShutdownHelper.cs -------------------------------------------------------------------------------- /GetStoreApp/Helpers/Root/SpeedHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Helpers/Root/SpeedHelper.cs -------------------------------------------------------------------------------- /GetStoreApp/Helpers/Root/VolumeSizeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Helpers/Root/VolumeSizeHelper.cs -------------------------------------------------------------------------------- /GetStoreApp/Helpers/Store/HttpParseHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Helpers/Store/HttpParseHelper.cs -------------------------------------------------------------------------------- /GetStoreApp/Helpers/Store/HttpRequestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Helpers/Store/HttpRequestHelper.cs -------------------------------------------------------------------------------- /GetStoreApp/Helpers/Store/QueryLinksHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Helpers/Store/QueryLinksHelper.cs -------------------------------------------------------------------------------- /GetStoreApp/Helpers/Store/SearchStoreHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Helpers/Store/SearchStoreHelper.cs -------------------------------------------------------------------------------- /GetStoreApp/Helpers/WinGet/WinGetFactoryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Helpers/WinGet/WinGetFactoryHelper.cs -------------------------------------------------------------------------------- /GetStoreApp/MainApp.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/MainApp.xaml -------------------------------------------------------------------------------- /GetStoreApp/MainApp.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/MainApp.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/AppInfoModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/AppInfoModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/AppListEntryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/AppListEntryModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/AppUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/AppUpdateModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/AvailableVersionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/AvailableVersionModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/ChannelModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/ChannelModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/CompletedModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/CompletedModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/ControlItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/ControlItemModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/DownloadSchedulerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/DownloadSchedulerModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/DownloadingModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/DownloadingModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/HistoryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/HistoryModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/InfoBarModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/InfoBarModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/InstalledAppsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/InstalledAppsModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/LanguageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/LanguageModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/NavigationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/NavigationModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/PackageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/PackageModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/PackageOperationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/PackageOperationModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/PackageVolumeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/PackageVolumeModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/QueryLinksModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/QueryLinksModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/RequestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/RequestModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/SearchAppsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/SearchAppsModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/SearchStoreModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/SearchStoreModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/StartupArgsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/StartupArgsModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/StoreRegionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/StoreRegionModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/TraceCleanupModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/TraceCleanupModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/TypeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/TypeModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/UpgradableAppsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/UpgradableAppsModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Models/WinGetSourceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Models/WinGetSourceModel.cs -------------------------------------------------------------------------------- /GetStoreApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Program.cs -------------------------------------------------------------------------------- /GetStoreApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GetStoreApp/Properties/launchsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Properties/launchsettings.json -------------------------------------------------------------------------------- /GetStoreApp/Services/Download/Aria2Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Download/Aria2Service.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Download/BitsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Download/BitsService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Download/DeliveryOptimizationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Download/DeliveryOptimizationService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Download/DownloadSchedulerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Download/DownloadSchedulerService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Download/DownloadStorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Download/DownloadStorageService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/History/HistoryStorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/History/HistoryStorageService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Root/BadgeNotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Root/BadgeNotificationService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Root/DesktopLaunchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Root/DesktopLaunchService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Root/GlobalNotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Root/GlobalNotificationService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Root/LocalSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Root/LocalSettingsService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Root/LogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Root/LogService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Root/ResourceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Root/ResourceService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Root/ToastNotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Root/ToastNotificationService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Settings/AlwaysShowBackdropService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Settings/AlwaysShowBackdropService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Settings/AppInstallService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Settings/AppInstallService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Settings/BackdropService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Settings/BackdropService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Settings/CancelAutoUpdateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Settings/CancelAutoUpdateService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Settings/DownloadOptionsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Settings/DownloadOptionsService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Settings/InstallModeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Settings/InstallModeService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Settings/LanguageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Settings/LanguageService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Settings/LinkFilterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Settings/LinkFilterService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Settings/NotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Settings/NotificationService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Settings/QueryLinksModeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Settings/QueryLinksModeService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Settings/ShellMenuService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Settings/ShellMenuService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Settings/StoreRegionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Settings/StoreRegionService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Settings/ThemeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Settings/ThemeService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Settings/TopMostService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Settings/TopMostService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Settings/TraceCleanupService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Settings/TraceCleanupService.cs -------------------------------------------------------------------------------- /GetStoreApp/Services/Settings/WinGetConfigService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Services/Settings/WinGetConfigService.cs -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/AppInformation.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/AppInformation.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/AppList.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/AppList.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/AppManager.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/AppManager.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/AppUpdate.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/AppUpdate.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/Application.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/Application.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/Completed.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/Completed.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/Dialog.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/Dialog.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/Download.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/Download.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/Downloading.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/Downloading.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/Home.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/Home.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/Installer.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/Installer.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/NotificationTip.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/NotificationTip.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/Pinner.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/Pinner.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/QueryLinks.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/QueryLinks.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/Resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/Resources.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/SearchStore.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/SearchStore.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/Settings.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/Settings.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/SettingsAbout.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/SettingsAbout.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/SettingsAdvanced.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/SettingsAdvanced.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/SettingsAppInstall.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/SettingsAppInstall.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/SettingsDownload.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/SettingsDownload.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/SettingsGeneral.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/SettingsGeneral.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/SettingsItem.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/SettingsItem.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/SettingsPackageVolume.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/SettingsPackageVolume.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/SettingsStoreAndUpdate.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/SettingsStoreAndUpdate.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/SettingsWinGet.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/SettingsWinGet.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/SettingsWinGetSource.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/SettingsWinGetSource.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/ShellMenu.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/ShellMenu.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/Store.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/Store.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/WebView.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/WebView.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/WinGet.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/WinGet.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/WinGetAppsVersionInfo.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/WinGetAppsVersionInfo.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/WinGetAppsVersionOptions.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/WinGetAppsVersionOptions.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/WinGetInstalled.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/WinGetInstalled.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/WinGetSearch.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/WinGetSearch.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/WinGetUpgrade.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/WinGetUpgrade.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/en-us/Window.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/en-us/Window.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/AppInformation.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/AppInformation.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/AppList.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/AppList.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/AppManager.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/AppManager.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/AppUpdate.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/AppUpdate.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/Application.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/Application.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/Completed.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/Completed.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/Dialog.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/Dialog.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/Download.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/Download.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/Downloading.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/Downloading.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/Home.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/Home.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/Installer.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/Installer.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/NotificationTip.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/NotificationTip.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/Pinner.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/Pinner.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/QueryLinks.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/QueryLinks.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/Resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/Resources.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/SearchStore.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/SearchStore.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/Settings.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/Settings.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/SettingsAbout.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/SettingsAbout.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/SettingsAdvanced.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/SettingsAdvanced.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/SettingsAppInstall.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/SettingsAppInstall.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/SettingsDownload.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/SettingsDownload.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/SettingsGeneral.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/SettingsGeneral.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/SettingsItem.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/SettingsItem.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/SettingsPackageVolume.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/SettingsPackageVolume.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/SettingsStoreAndUpdate.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/SettingsStoreAndUpdate.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/SettingsWinGet.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/SettingsWinGet.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/SettingsWinGetSource.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/SettingsWinGetSource.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/ShellMenu.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/ShellMenu.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/Store.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/Store.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/WebView.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/WebView.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/WinGet.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/WinGet.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/WinGetAppsVersionInfo.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/WinGetAppsVersionInfo.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/WinGetAppsVersionOptions.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/WinGetAppsVersionOptions.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/WinGetInstalled.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/WinGetInstalled.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/WinGetSearch.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/WinGetSearch.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/WinGetUpgrade.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/WinGetUpgrade.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/he-il/Window.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/he-il/Window.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/AppInformation.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/AppInformation.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/AppList.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/AppList.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/AppManager.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/AppManager.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/AppUpdate.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/AppUpdate.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/Application.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/Application.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/Completed.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/Completed.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/Dialog.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/Dialog.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/Download.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/Download.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/Downloading.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/Downloading.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/Home.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/Home.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/Installer.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/Installer.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/NotificationTip.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/NotificationTip.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/Pinner.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/Pinner.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/QueryLinks.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/QueryLinks.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/Resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/Resources.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/SearchStore.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/SearchStore.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/Settings.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/Settings.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/SettingsAbout.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/SettingsAbout.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/SettingsAdvanced.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/SettingsAdvanced.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/SettingsAppInstall.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/SettingsAppInstall.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/SettingsDownload.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/SettingsDownload.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/SettingsGeneral.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/SettingsGeneral.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/SettingsItem.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/SettingsItem.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/SettingsPackageVolume.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/SettingsPackageVolume.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/SettingsStoreAndUpdate.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/SettingsStoreAndUpdate.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/SettingsWinGet.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/SettingsWinGet.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/SettingsWinGetSource.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/SettingsWinGetSource.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/ShellMenu.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/ShellMenu.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/Store.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/Store.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/WebView.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/WebView.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/WinGet.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/WinGet.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/WinGetAppsVersionInfo.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/WinGetAppsVersionInfo.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/WinGetAppsVersionOptions.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/WinGetAppsVersionOptions.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/WinGetInstalled.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/WinGetInstalled.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/WinGetSearch.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/WinGetSearch.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/WinGetUpgrade.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/WinGetUpgrade.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/ru-ru/Window.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/ru-ru/Window.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/AppInformation.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/AppInformation.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/AppList.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/AppList.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/AppManager.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/AppManager.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/AppUpdate.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/AppUpdate.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/Application.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/Application.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/Completed.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/Completed.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/Dialog.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/Dialog.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/Download.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/Download.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/Downloading.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/Downloading.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/Home.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/Home.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/Installer.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/Installer.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/NotificationTip.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/NotificationTip.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/Pinner.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/Pinner.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/QueryLinks.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/QueryLinks.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/Resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/Resources.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/SearchStore.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/SearchStore.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/Settings.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/Settings.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/SettingsAbout.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/SettingsAbout.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/SettingsAdvanced.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/SettingsAdvanced.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/SettingsAppInstall.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/SettingsAppInstall.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/SettingsDownload.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/SettingsDownload.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/SettingsGeneral.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/SettingsGeneral.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/SettingsItem.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/SettingsItem.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/SettingsPackageVolume.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/SettingsPackageVolume.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/SettingsStoreAndUpdate.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/SettingsStoreAndUpdate.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/SettingsWinGet.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/SettingsWinGet.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/SettingsWinGetSource.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/SettingsWinGetSource.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/ShellMenu.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/ShellMenu.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/Store.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/Store.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/WebView.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/WebView.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/WinGet.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/WinGet.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/WinGetAppsVersionInfo.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/WinGetAppsVersionInfo.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/WinGetAppsVersionOptions.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/WinGetAppsVersionOptions.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/WinGetInstalled.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/WinGetInstalled.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/WinGetSearch.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/WinGetSearch.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/WinGetUpgrade.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/WinGetUpgrade.resjson -------------------------------------------------------------------------------- /GetStoreApp/Strings/zh-hans/Window.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Strings/zh-hans/Window.resjson -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/AppInformationDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/AppInformationDialog.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/AppInformationDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/AppInformationDialog.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/AppRunningDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/AppRunningDialog.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/AppRunningDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/AppRunningDialog.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/ClosingWindowDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/ClosingWindowDialog.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/ClosingWindowDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/ClosingWindowDialog.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/DeleteFileDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/DeleteFileDialog.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/DeleteFileDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/DeleteFileDialog.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/DesktopStartupArgsDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/DesktopStartupArgsDialog.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/DesktopStartupArgsDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/DesktopStartupArgsDialog.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/FileInformationDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/FileInformationDialog.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/FileInformationDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/FileInformationDialog.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/LicenseDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/LicenseDialog.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/LicenseDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/LicenseDialog.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/PackageVolumeAddDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/PackageVolumeAddDialog.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/PackageVolumeAddDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/PackageVolumeAddDialog.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/PackageVolumeInfoDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/PackageVolumeInfoDialog.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/PackageVolumeInfoDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/PackageVolumeInfoDialog.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/RebootDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/RebootDialog.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/RebootDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/RebootDialog.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/RestartAppsDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/RestartAppsDialog.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/RestartAppsDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/RestartAppsDialog.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/TraceCleanupPromptDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/TraceCleanupPromptDialog.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/TraceCleanupPromptDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/TraceCleanupPromptDialog.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/UpdateAppDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/UpdateAppDialog.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/UpdateAppDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/UpdateAppDialog.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/WinGetAppsVersionDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/WinGetAppsVersionDialog.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/WinGetAppsVersionDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/WinGetAppsVersionDialog.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/WinGetSourceEditDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/WinGetSourceEditDialog.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Dialogs/WinGetSourceEditDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Dialogs/WinGetSourceEditDialog.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/NotificationTips/CopyPasteMainNotificationTip.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/NotificationTips/CopyPasteMainNotificationTip.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/NotificationTips/CopyPasteMainNotificationTip.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/NotificationTips/CopyPasteMainNotificationTip.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/NotificationTips/OperationResultNotificationTip.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/NotificationTips/OperationResultNotificationTip.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/NotificationTips/OperationResultNotificationTip.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/NotificationTips/OperationResultNotificationTip.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/AppInformationPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/AppInformationPage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/AppInformationPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/AppInformationPage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/AppListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/AppListPage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/AppListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/AppListPage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/AppManagerPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/AppManagerPage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/AppManagerPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/AppManagerPage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/AppUpdatePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/AppUpdatePage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/AppUpdatePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/AppUpdatePage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/CompletedPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/CompletedPage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/CompletedPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/CompletedPage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/DownloadPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/DownloadPage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/DownloadPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/DownloadPage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/DownloadingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/DownloadingPage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/DownloadingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/DownloadingPage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/HomePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/HomePage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/HomePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/HomePage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/QueryLinksPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/QueryLinksPage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/QueryLinksPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/QueryLinksPage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/SearchStorePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/SearchStorePage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/SearchStorePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/SearchStorePage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/SettingsAboutPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/SettingsAboutPage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/SettingsAboutPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/SettingsAboutPage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/SettingsAdvancedPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/SettingsAdvancedPage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/SettingsAdvancedPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/SettingsAdvancedPage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/SettingsAppInstallPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/SettingsAppInstallPage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/SettingsAppInstallPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/SettingsAppInstallPage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/SettingsDownloadPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/SettingsDownloadPage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/SettingsDownloadPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/SettingsDownloadPage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/SettingsGeneralPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/SettingsGeneralPage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/SettingsGeneralPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/SettingsGeneralPage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/SettingsItemPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/SettingsItemPage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/SettingsItemPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/SettingsItemPage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/SettingsPackageVolumePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/SettingsPackageVolumePage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/SettingsPackageVolumePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/SettingsPackageVolumePage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/SettingsPage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/SettingsStoreAndUpdatePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/SettingsStoreAndUpdatePage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/SettingsStoreAndUpdatePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/SettingsStoreAndUpdatePage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/SettingsWinGetPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/SettingsWinGetPage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/SettingsWinGetPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/SettingsWinGetPage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/SettingsWinGetSourcePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/SettingsWinGetSourcePage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/SettingsWinGetSourcePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/SettingsWinGetSourcePage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/StorePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/StorePage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/StorePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/StorePage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/WinGetAppsVersionInfoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/WinGetAppsVersionInfoPage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/WinGetAppsVersionInfoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/WinGetAppsVersionInfoPage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/WinGetAppsVersionOptionsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/WinGetAppsVersionOptionsPage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/WinGetAppsVersionOptionsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/WinGetAppsVersionOptionsPage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/WinGetInstalledPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/WinGetInstalledPage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/WinGetInstalledPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/WinGetInstalledPage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/WinGetPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/WinGetPage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/WinGetPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/WinGetPage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/WinGetSearchPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/WinGetSearchPage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/WinGetSearchPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/WinGetSearchPage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/WinGetUpgradePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/WinGetUpgradePage.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Pages/WinGetUpgradePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Pages/WinGetUpgradePage.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/Views/Windows/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Windows/MainWindow.xaml -------------------------------------------------------------------------------- /GetStoreApp/Views/Windows/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/Views/Windows/MainWindow.xaml.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/ComTypes/BG_ERROR_CONTEXT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/ComTypes/BG_ERROR_CONTEXT.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/ComTypes/BG_JOB_NOTIFICATION_TYPE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/ComTypes/BG_JOB_NOTIFICATION_TYPE.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/ComTypes/BG_JOB_PRIORITY.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/ComTypes/BG_JOB_PRIORITY.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/ComTypes/BG_JOB_PROGRESS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/ComTypes/BG_JOB_PROGRESS.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/ComTypes/BG_JOB_PROXY_USAGE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/ComTypes/BG_JOB_PROXY_USAGE.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/ComTypes/BG_JOB_STATE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/ComTypes/BG_JOB_STATE.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/ComTypes/BG_JOB_TYPE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/ComTypes/BG_JOB_TYPE.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/ComTypes/BackgroundCopyCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/ComTypes/BackgroundCopyCallback.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/ComTypes/DODownloadProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/ComTypes/DODownloadProperty.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/ComTypes/DODownloadState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/ComTypes/DODownloadState.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/ComTypes/DODownloadStatusCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/ComTypes/DODownloadStatusCallback.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/ComTypes/DO_DOWNLOAD_STATUS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/ComTypes/DO_DOWNLOAD_STATUS.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/ComTypes/FileOperationFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/ComTypes/FileOperationFlags.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/ComTypes/IBackgroundCopyCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/ComTypes/IBackgroundCopyCallback.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/ComTypes/IBackgroundCopyError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/ComTypes/IBackgroundCopyError.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/ComTypes/IBackgroundCopyJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/ComTypes/IBackgroundCopyJob.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/ComTypes/IBackgroundCopyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/ComTypes/IBackgroundCopyManager.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/ComTypes/IDODownload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/ComTypes/IDODownload.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/ComTypes/IDODownloadStatusCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/ComTypes/IDODownloadStatusCallback.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/ComTypes/IDOManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/ComTypes/IDOManager.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/ComTypes/IFileOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/ComTypes/IFileOperation.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/ComTypes/IOpenControlPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/ComTypes/IOpenControlPanel.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/ComTypes/IShellItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/ComTypes/IShellItem.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/ComTypes/SIGDN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/ComTypes/SIGDN.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/PInvoke/Advapi32/Advapi32Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/PInvoke/Advapi32/Advapi32Library.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/PInvoke/Advapi32/LUID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/PInvoke/Advapi32/LUID.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/PInvoke/Advapi32/SHTDN_REASON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/PInvoke/Advapi32/SHTDN_REASON.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/PInvoke/Advapi32/TOKEN_PRIVILEGES.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/PInvoke/Advapi32/TOKEN_PRIVILEGES.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/PInvoke/Comctl32/Comctl32Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/PInvoke/Comctl32/Comctl32Library.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/PInvoke/Comctl32/SUBCLASSPROC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/PInvoke/Comctl32/SUBCLASSPROC.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/PInvoke/Kernel32/CreateToolhelp32SnapshotFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/PInvoke/Kernel32/CreateToolhelp32SnapshotFlags.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/PInvoke/Kernel32/EDesiredAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/PInvoke/Kernel32/EDesiredAccess.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/PInvoke/Kernel32/GEO_ENUMNAMEPROC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/PInvoke/Kernel32/GEO_ENUMNAMEPROC.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/PInvoke/Kernel32/Kernel32Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/PInvoke/Kernel32/Kernel32Library.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/PInvoke/Kernel32/PROCESSENTRY32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/PInvoke/Kernel32/PROCESSENTRY32.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/PInvoke/Kernel32/SYSGEOCLASS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/PInvoke/Kernel32/SYSGEOCLASS.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/PInvoke/Ole32/CLSCTX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/PInvoke/Ole32/CLSCTX.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/PInvoke/Ole32/Ole32Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/PInvoke/Ole32/Ole32Library.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/PInvoke/Rstrtmgr/RM_SHUTDOWN_TYPE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/PInvoke/Rstrtmgr/RM_SHUTDOWN_TYPE.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/PInvoke/Rstrtmgr/RM_UNIQUE_PROCESS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/PInvoke/Rstrtmgr/RM_UNIQUE_PROCESS.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/PInvoke/Rstrtmgr/RM_WRITE_STATUS_CALLBACK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/PInvoke/Rstrtmgr/RM_WRITE_STATUS_CALLBACK.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/PInvoke/Rstrtmgr/RstrtmgrLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/PInvoke/Rstrtmgr/RstrtmgrLibrary.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/PInvoke/Shell32/Shell32Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/PInvoke/Shell32/Shell32Library.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/PInvoke/Shell32/WindowShowStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/PInvoke/Shell32/WindowShowStyle.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/PInvoke/User32/SystemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/PInvoke/User32/SystemCommand.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/PInvoke/User32/User32Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/PInvoke/User32/User32Library.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/PInvoke/User32/WindowMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/PInvoke/User32/WindowMessage.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/PInvoke/Uxtheme/PreferredAppMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/PInvoke/Uxtheme/PreferredAppMode.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/PInvoke/Uxtheme/UxthemeLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/PInvoke/Uxtheme/UxthemeLibrary.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/WinRT/ABI/ContentExternalBackdropLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/WinRT/ABI/ContentExternalBackdropLink.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/WinRT/ABI/IContentExternalBackdropLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/WinRT/ABI/IContentExternalBackdropLink.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/WinRT/ABI/IContentExternalBackdropLinkMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/WinRT/ABI/IContentExternalBackdropLinkMethods.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/WinRT/ABI/IContentExternalBackdropLinkStatics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/WinRT/ABI/IContentExternalBackdropLinkStatics.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/WinRT/ContentExternalBackdropLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/WinRT/ContentExternalBackdropLink.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/WinRT/IContentExternalBackdropLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/WinRT/IContentExternalBackdropLink.cs -------------------------------------------------------------------------------- /GetStoreApp/WindowsAPI/WinRT/IContentExternalBackdropLinkStatics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreApp/WindowsAPI/WinRT/IContentExternalBackdropLinkStatics.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Extensions/Backdrop/ControlBackdropController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Extensions/Backdrop/ControlBackdropController.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Extensions/Backdrop/MaterialBackdrop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Extensions/Backdrop/MaterialBackdrop.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Extensions/DataType/Classes/DependencyAppInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Extensions/DataType/Classes/DependencyAppInformation.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Extensions/DataType/Classes/DependencyInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Extensions/DataType/Classes/DependencyInformation.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Extensions/DataType/Classes/ManifestInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Extensions/DataType/Classes/ManifestInformation.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Extensions/DataType/Classes/PackageInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Extensions/DataType/Classes/PackageInformation.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Extensions/DataType/Classes/ResourceManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Extensions/DataType/Classes/ResourceManagement.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Extensions/DataType/Constant/ConfigKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Extensions/DataType/Constant/ConfigKey.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Extensions/DataType/Enums/PackageFileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Extensions/DataType/Enums/PackageFileType.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Extensions/DataType/Enums/PriDescriptorFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Extensions/DataType/Enums/PriDescriptorFlags.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Extensions/DataType/Enums/QualifierType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Extensions/DataType/Enums/QualifierType.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Extensions/DataType/Enums/ResourceValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Extensions/DataType/Enums/ResourceValueType.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Extensions/DataType/Methods/BinaryReaderExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Extensions/DataType/Methods/BinaryReaderExtension.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/GetStoreAppInstaller.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/GetStoreAppInstaller.csproj -------------------------------------------------------------------------------- /GetStoreAppInstaller/GetStoreAppInstaller.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/GetStoreAppInstaller.manifest -------------------------------------------------------------------------------- /GetStoreAppInstaller/GetStoreAppInstaller.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/GetStoreAppInstaller.res -------------------------------------------------------------------------------- /GetStoreAppInstaller/Helpers/Backdrop/ToolTipBackdropHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Helpers/Backdrop/ToolTipBackdropHelper.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Helpers/Converters/ValueCheckConverterHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Helpers/Converters/ValueCheckConverterHelper.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Helpers/Converters/ValueConverterHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Helpers/Converters/ValueConverterHelper.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Helpers/Root/CopyPasteHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Helpers/Root/CopyPasteHelper.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Helpers/Root/RuntimeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Helpers/Root/RuntimeHelper.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/InstallerApp.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/InstallerApp.xaml -------------------------------------------------------------------------------- /GetStoreAppInstaller/InstallerApp.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/InstallerApp.xaml.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Models/ApplicationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Models/ApplicationModel.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Models/CapabilityModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Models/CapabilityModel.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Models/DependencyModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Models/DependencyModel.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Models/InstallDependencyModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Models/InstallDependencyModel.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Models/StringModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Models/StringModel.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Models/TargetDeviceFamilyModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Models/TargetDeviceFamilyModel.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Program.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Properties/launchsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Properties/launchsettings.json -------------------------------------------------------------------------------- /GetStoreAppInstaller/Services/Root/LocalSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Services/Root/LocalSettingsService.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Services/Root/LogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Services/Root/LogService.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Services/Root/ResourceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Services/Root/ResourceService.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Services/Root/ToastNotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Services/Root/ToastNotificationService.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Services/Settings/AlwaysShowBackdropService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Services/Settings/AlwaysShowBackdropService.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Services/Settings/AppInstallService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Services/Settings/AppInstallService.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Services/Settings/BackdropService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Services/Settings/BackdropService.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Services/Settings/LanguageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Services/Settings/LanguageService.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Services/Settings/ThemeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Services/Settings/ThemeService.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/Views/Windows/InstallerWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Views/Windows/InstallerWindow.xaml -------------------------------------------------------------------------------- /GetStoreAppInstaller/Views/Windows/InstallerWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/Views/Windows/InstallerWindow.xaml.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/APPX_BUNDLE_PAYLOAD_PACKAGE_TYPE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/APPX_BUNDLE_PAYLOAD_PACKAGE_TYPE.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/APPX_CAPABILITY_CLASS_TYPE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/APPX_CAPABILITY_CLASS_TYPE.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/APPX_FOOTPRINT_FILE_TYPE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/APPX_FOOTPRINT_FILE_TYPE.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/COMDLG_FILTERSPEC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/COMDLG_FILTERSPEC.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/GRAPHICS_EFFECT_PROPERTY_MAPPING.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/GRAPHICS_EFFECT_PROPERTY_MAPPING.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxBundleFactory2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxBundleFactory2.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxBundleManifestPackageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxBundleManifestPackageInfo.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxBundleManifestReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxBundleManifestReader.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxBundleReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxBundleReader.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxFactory3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxFactory3.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxFile.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxFilesEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxFilesEnumerator.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxManifestApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxManifestApplication.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxManifestPackageDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxManifestPackageDependency.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxManifestPackageDependency2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxManifestPackageDependency2.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxManifestPackageId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxManifestPackageId.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxManifestPackageId2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxManifestPackageId2.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxManifestProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxManifestProperties.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxManifestQualifiedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxManifestQualifiedResource.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxManifestReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxManifestReader.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxManifestReader2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxManifestReader2.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxManifestReader3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxManifestReader3.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxManifestTargetDeviceFamily.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxManifestTargetDeviceFamily.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxPackageReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/IAppxPackageReader.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/ISequentialStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/ISequentialStream.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/IShellItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/IShellItem.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/IShellItemArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/IShellItemArray.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/IStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/IStream.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/ComTypes/SIGDN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/ComTypes/SIGDN.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/PInvoke/Comctl32/Comctl32Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/PInvoke/Comctl32/Comctl32Library.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/PInvoke/Comctl32/SUBCLASSPROC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/PInvoke/Comctl32/SUBCLASSPROC.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/PInvoke/Ole32/CLSCTX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/PInvoke/Ole32/CLSCTX.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/PInvoke/Ole32/Ole32Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/PInvoke/Ole32/Ole32Library.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/PInvoke/SHCore/BSOS_OPTIONS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/PInvoke/SHCore/BSOS_OPTIONS.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/PInvoke/SHCore/ShCoreLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/PInvoke/SHCore/ShCoreLibrary.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/PInvoke/Shell32/Shell32Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/PInvoke/Shell32/Shell32Library.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/PInvoke/Shell32/WindowShowStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/PInvoke/Shell32/WindowShowStyle.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/PInvoke/User32/ChangeFilterFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/PInvoke/User32/ChangeFilterFlags.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/PInvoke/User32/SYSTEMCOMMAND.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/PInvoke/User32/SYSTEMCOMMAND.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/PInvoke/User32/User32Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/PInvoke/User32/User32Library.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/PInvoke/User32/WindowExStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/PInvoke/User32/WindowExStyle.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/PInvoke/User32/WindowLongIndexFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/PInvoke/User32/WindowLongIndexFlags.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/PInvoke/User32/WindowMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/PInvoke/User32/WindowMessage.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/PInvoke/User32/WindowStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/PInvoke/User32/WindowStyle.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/PInvoke/Uxtheme/PreferredAppMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/PInvoke/Uxtheme/PreferredAppMode.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/PInvoke/Uxtheme/UxthemeLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/PInvoke/Uxtheme/UxthemeLibrary.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/WinRT/ABI/ContentExternalBackdropLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/WinRT/ABI/ContentExternalBackdropLink.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/WinRT/ABI/IContentExternalBackdropLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/WinRT/ABI/IContentExternalBackdropLink.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/WinRT/ContentExternalBackdropLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/WinRT/ContentExternalBackdropLink.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/WinRT/IContentExternalBackdropLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/WinRT/IContentExternalBackdropLink.cs -------------------------------------------------------------------------------- /GetStoreAppInstaller/WindowsAPI/WinRT/IContentExternalBackdropLinkStatics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppInstaller/WindowsAPI/WinRT/IContentExternalBackdropLinkStatics.cs -------------------------------------------------------------------------------- /GetStoreAppNonStorePackage/GetStoreAppNonStorePackage.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppNonStorePackage/GetStoreAppNonStorePackage.wapproj -------------------------------------------------------------------------------- /GetStoreAppNonStorePackage/GetStoreAppNonStorePackage_SignKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppNonStorePackage/GetStoreAppNonStorePackage_SignKey.pfx -------------------------------------------------------------------------------- /GetStoreAppNonStorePackage/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppNonStorePackage/Package.appxmanifest -------------------------------------------------------------------------------- /GetStoreAppPackage/GetStoreAppPackage.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppPackage/GetStoreAppPackage.wapproj -------------------------------------------------------------------------------- /GetStoreAppPackage/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppPackage/Package.appxmanifest -------------------------------------------------------------------------------- /GetStoreAppPinner/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppPinner/App.xaml -------------------------------------------------------------------------------- /GetStoreAppPinner/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppPinner/App.xaml.cs -------------------------------------------------------------------------------- /GetStoreAppPinner/Extensions/DataType/Constant/ConfigKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppPinner/Extensions/DataType/Constant/ConfigKey.cs -------------------------------------------------------------------------------- /GetStoreAppPinner/GetStoreAppPinner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppPinner/GetStoreAppPinner.csproj -------------------------------------------------------------------------------- /GetStoreAppPinner/GetStoreAppPinner.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppPinner/GetStoreAppPinner.manifest -------------------------------------------------------------------------------- /GetStoreAppPinner/GetStoreAppPinner.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppPinner/GetStoreAppPinner.res -------------------------------------------------------------------------------- /GetStoreAppPinner/Helpers/Root/FeatureAccessHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppPinner/Helpers/Root/FeatureAccessHelper.cs -------------------------------------------------------------------------------- /GetStoreAppPinner/Helpers/Root/HashAlgorithmHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppPinner/Helpers/Root/HashAlgorithmHelper.cs -------------------------------------------------------------------------------- /GetStoreAppPinner/Helpers/Root/RuntimeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppPinner/Helpers/Root/RuntimeHelper.cs -------------------------------------------------------------------------------- /GetStoreAppPinner/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppPinner/Program.cs -------------------------------------------------------------------------------- /GetStoreAppPinner/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppPinner/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GetStoreAppPinner/Properties/launchsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppPinner/Properties/launchsettings.json -------------------------------------------------------------------------------- /GetStoreAppPinner/Services/Root/LocalSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppPinner/Services/Root/LocalSettingsService.cs -------------------------------------------------------------------------------- /GetStoreAppPinner/Services/Root/LogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppPinner/Services/Root/LogService.cs -------------------------------------------------------------------------------- /GetStoreAppPinner/Services/Root/ResourceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppPinner/Services/Root/ResourceService.cs -------------------------------------------------------------------------------- /GetStoreAppPinner/Services/Settings/LanguageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppPinner/Services/Settings/LanguageService.cs -------------------------------------------------------------------------------- /GetStoreAppPinner/Services/Settings/ThemeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppPinner/Services/Settings/ThemeService.cs -------------------------------------------------------------------------------- /GetStoreAppPinner/Views/Pages/PinnerPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppPinner/Views/Pages/PinnerPage.xaml -------------------------------------------------------------------------------- /GetStoreAppPinner/Views/Pages/PinnerPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppPinner/Views/Pages/PinnerPage.xaml.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/Commands/AppInstallAdminCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/Commands/AppInstallAdminCommand.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/Commands/AppInstallCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/Commands/AppInstallCommand.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/Commands/EnumExplorerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/Commands/EnumExplorerCommand.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/Commands/PSInstallAdminCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/Commands/PSInstallAdminCommand.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/Commands/PSInstallCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/Commands/PSInstallCommand.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/Commands/PSRegisterCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/Commands/PSRegisterCommand.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/Commands/RootExplorerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/Commands/RootExplorerCommand.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/Extensions/DataType/Constant/ConfigKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/Extensions/DataType/Constant/ConfigKey.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/GetStoreAppShellExtension.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/GetStoreAppShellExtension.csproj -------------------------------------------------------------------------------- /GetStoreAppShellExtension/Helpers/Root/InfoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/Helpers/Root/InfoHelper.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/Program.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/Services/Root/LocalSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/Services/Root/LocalSettingsService.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/Services/Root/ResourceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/Services/Root/ResourceService.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/Services/Settings/AppInstallService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/Services/Settings/AppInstallService.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/Services/Settings/LanguageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/Services/Settings/LanguageService.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/Services/Settings/ShellMenuService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/Services/Settings/ShellMenuService.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/ShellMenuClassFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/ShellMenuClassFactory.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/WindowsAPI/ComTypes/EXPCMDFLAGS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/WindowsAPI/ComTypes/EXPCMDFLAGS.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/WindowsAPI/ComTypes/EXPCMDSTATE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/WindowsAPI/ComTypes/EXPCMDSTATE.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/WindowsAPI/ComTypes/IClassFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/WindowsAPI/ComTypes/IClassFactory.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/WindowsAPI/ComTypes/IEnumExplorerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/WindowsAPI/ComTypes/IEnumExplorerCommand.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/WindowsAPI/ComTypes/IExplorerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/WindowsAPI/ComTypes/IExplorerCommand.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/WindowsAPI/ComTypes/IShellItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/WindowsAPI/ComTypes/IShellItem.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/WindowsAPI/ComTypes/IShellItemArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/WindowsAPI/ComTypes/IShellItemArray.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/WindowsAPI/ComTypes/SIGDN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/WindowsAPI/ComTypes/SIGDN.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/WindowsAPI/PInvoke/Shell32/Shell32Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/WindowsAPI/PInvoke/Shell32/Shell32Library.cs -------------------------------------------------------------------------------- /GetStoreAppShellExtension/WindowsAPI/PInvoke/Shell32/WindowShowStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppShellExtension/WindowsAPI/PInvoke/Shell32/WindowShowStyle.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/Extensions/Backdrop/MaterialBackdrop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/Extensions/Backdrop/MaterialBackdrop.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/Extensions/DataType/Constant/ConfigKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/Extensions/DataType/Constant/ConfigKey.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/Extensions/DataType/Enums/WebView2Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/Extensions/DataType/Enums/WebView2Type.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/GetStoreAppWebView.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/GetStoreAppWebView.csproj -------------------------------------------------------------------------------- /GetStoreAppWebView/GetStoreAppWebView.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/GetStoreAppWebView.manifest -------------------------------------------------------------------------------- /GetStoreAppWebView/GetStoreAppWebView.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/GetStoreAppWebView.res -------------------------------------------------------------------------------- /GetStoreAppWebView/Helpers/Backdrop/ToolTipBackdropHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/Helpers/Backdrop/ToolTipBackdropHelper.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/Helpers/Root/InfoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/Helpers/Root/InfoHelper.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/Helpers/Root/RuntimeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/Helpers/Root/RuntimeHelper.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/Program.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/Properties/launchsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/Properties/launchsettings.json -------------------------------------------------------------------------------- /GetStoreAppWebView/Services/Root/LocalSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/Services/Root/LocalSettingsService.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/Services/Root/LogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/Services/Root/LogService.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/Services/Root/ResourceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/Services/Root/ResourceService.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/Services/Settings/AlwaysShowBackdropService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/Services/Settings/AlwaysShowBackdropService.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/Services/Settings/BackdropService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/Services/Settings/BackdropService.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/Services/Settings/DownloadOptionsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/Services/Settings/DownloadOptionsService.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/Services/Settings/LanguageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/Services/Settings/LanguageService.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/Services/Settings/ThemeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/Services/Settings/ThemeService.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/Views/Dialogs/BrowserInformationDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/Views/Dialogs/BrowserInformationDialog.xaml -------------------------------------------------------------------------------- /GetStoreAppWebView/Views/Dialogs/BrowserInformationDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/Views/Dialogs/BrowserInformationDialog.xaml.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/Views/Dialogs/ProcessFailedDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/Views/Dialogs/ProcessFailedDialog.xaml -------------------------------------------------------------------------------- /GetStoreAppWebView/Views/Dialogs/ProcessFailedDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/Views/Dialogs/ProcessFailedDialog.xaml.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/Views/Windows/WebViewWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/Views/Windows/WebViewWindow.xaml -------------------------------------------------------------------------------- /GetStoreAppWebView/Views/Windows/WebViewWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/Views/Windows/WebViewWindow.xaml.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/WebViewApp.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/WebViewApp.xaml -------------------------------------------------------------------------------- /GetStoreAppWebView/WebViewApp.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/WebViewApp.xaml.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/WindowsAPI/PInvoke/Comctl32/Comctl32Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/WindowsAPI/PInvoke/Comctl32/Comctl32Library.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/WindowsAPI/PInvoke/Comctl32/SUBCLASSPROC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/WindowsAPI/PInvoke/Comctl32/SUBCLASSPROC.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/WindowsAPI/PInvoke/User32/SYSTEMCOMMAND.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/WindowsAPI/PInvoke/User32/SYSTEMCOMMAND.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/WindowsAPI/PInvoke/User32/User32Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/WindowsAPI/PInvoke/User32/User32Library.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/WindowsAPI/PInvoke/User32/WindowMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/WindowsAPI/PInvoke/User32/WindowMessage.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/WindowsAPI/PInvoke/Uxtheme/PreferredAppMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/WindowsAPI/PInvoke/Uxtheme/PreferredAppMode.cs -------------------------------------------------------------------------------- /GetStoreAppWebView/WindowsAPI/PInvoke/Uxtheme/UxthemeLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/GetStoreAppWebView/WindowsAPI/PInvoke/Uxtheme/UxthemeLibrary.cs -------------------------------------------------------------------------------- /Images/Logo/Github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/Logo/Github.png -------------------------------------------------------------------------------- /Images/en-us/About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/en-us/About.png -------------------------------------------------------------------------------- /Images/en-us/AppInformation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/en-us/AppInformation.png -------------------------------------------------------------------------------- /Images/en-us/AppInstaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/en-us/AppInstaller.png -------------------------------------------------------------------------------- /Images/en-us/AppList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/en-us/AppList.png -------------------------------------------------------------------------------- /Images/en-us/AppUpdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/en-us/AppUpdate.png -------------------------------------------------------------------------------- /Images/en-us/Completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/en-us/Completed.png -------------------------------------------------------------------------------- /Images/en-us/Downloading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/en-us/Downloading.png -------------------------------------------------------------------------------- /Images/en-us/Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/en-us/Home.png -------------------------------------------------------------------------------- /Images/en-us/PackageVolume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/en-us/PackageVolume.png -------------------------------------------------------------------------------- /Images/en-us/Querylinks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/en-us/Querylinks.png -------------------------------------------------------------------------------- /Images/en-us/SearchStore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/en-us/SearchStore.png -------------------------------------------------------------------------------- /Images/en-us/WebBrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/en-us/WebBrowser.png -------------------------------------------------------------------------------- /Images/en-us/WinGetDataSource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/en-us/WinGetDataSource.png -------------------------------------------------------------------------------- /Images/en-us/WinGetInstalledApps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/en-us/WinGetInstalledApps.png -------------------------------------------------------------------------------- /Images/en-us/WinGetSearchApps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/en-us/WinGetSearchApps.png -------------------------------------------------------------------------------- /Images/en-us/WinGetUpgradeApps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/en-us/WinGetUpgradeApps.png -------------------------------------------------------------------------------- /Images/he-il/About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/he-il/About.png -------------------------------------------------------------------------------- /Images/he-il/AppInformation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/he-il/AppInformation.png -------------------------------------------------------------------------------- /Images/he-il/AppInstaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/he-il/AppInstaller.png -------------------------------------------------------------------------------- /Images/he-il/AppList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/he-il/AppList.png -------------------------------------------------------------------------------- /Images/he-il/AppUpdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/he-il/AppUpdate.png -------------------------------------------------------------------------------- /Images/he-il/Completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/he-il/Completed.png -------------------------------------------------------------------------------- /Images/he-il/Downloading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/he-il/Downloading.png -------------------------------------------------------------------------------- /Images/he-il/Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/he-il/Home.png -------------------------------------------------------------------------------- /Images/he-il/PackageVolume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/he-il/PackageVolume.png -------------------------------------------------------------------------------- /Images/he-il/Querylinks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/he-il/Querylinks.png -------------------------------------------------------------------------------- /Images/he-il/SearchStore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/he-il/SearchStore.png -------------------------------------------------------------------------------- /Images/he-il/WebBrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/he-il/WebBrowser.png -------------------------------------------------------------------------------- /Images/he-il/WinGetDataSource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/he-il/WinGetDataSource.png -------------------------------------------------------------------------------- /Images/he-il/WinGetInstalledApps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/he-il/WinGetInstalledApps.png -------------------------------------------------------------------------------- /Images/he-il/WinGetSearchApps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/he-il/WinGetSearchApps.png -------------------------------------------------------------------------------- /Images/he-il/WinGetUpgradeApps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/he-il/WinGetUpgradeApps.png -------------------------------------------------------------------------------- /Images/zh-hans/About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/zh-hans/About.png -------------------------------------------------------------------------------- /Images/zh-hans/AppInformation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/zh-hans/AppInformation.png -------------------------------------------------------------------------------- /Images/zh-hans/AppInstaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/zh-hans/AppInstaller.png -------------------------------------------------------------------------------- /Images/zh-hans/AppList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/zh-hans/AppList.png -------------------------------------------------------------------------------- /Images/zh-hans/AppUpdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/zh-hans/AppUpdate.png -------------------------------------------------------------------------------- /Images/zh-hans/Completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/zh-hans/Completed.png -------------------------------------------------------------------------------- /Images/zh-hans/Downloading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/zh-hans/Downloading.png -------------------------------------------------------------------------------- /Images/zh-hans/Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/zh-hans/Home.png -------------------------------------------------------------------------------- /Images/zh-hans/PackageVolume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/zh-hans/PackageVolume.png -------------------------------------------------------------------------------- /Images/zh-hans/Querylinks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/zh-hans/Querylinks.png -------------------------------------------------------------------------------- /Images/zh-hans/SearchStore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/zh-hans/SearchStore.png -------------------------------------------------------------------------------- /Images/zh-hans/WebBrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/zh-hans/WebBrowser.png -------------------------------------------------------------------------------- /Images/zh-hans/WinGetDataSource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/zh-hans/WinGetDataSource.png -------------------------------------------------------------------------------- /Images/zh-hans/WinGetInstalledApps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/zh-hans/WinGetInstalledApps.png -------------------------------------------------------------------------------- /Images/zh-hans/WinGetSearchApps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/zh-hans/WinGetSearchApps.png -------------------------------------------------------------------------------- /Images/zh-hans/WinGetUpgradeApps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/Images/zh-hans/WinGetUpgradeApps.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaoyifei1011/GetStoreApp/HEAD/README.md --------------------------------------------------------------------------------