├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── feature_suggestion.yml │ └── new_feature.yml ├── PULL_REQUEST_TEMPLATE.md ├── RELEASE_TEMPLATE.md ├── RELEASE_TEMPLATE_SIMPLIFIED.md └── workflows │ └── create-release.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── Winhance.ps1 ├── Winhance.sln ├── extras ├── Winhance.Installer.iss └── build-and-package.ps1 └── src ├── Winhance.Core ├── Features │ ├── Common │ │ ├── Enums │ │ │ ├── CancellationReason.cs │ │ │ ├── ControlType.cs │ │ │ ├── LinkedSettingsLogic.cs │ │ │ ├── LogLevel.cs │ │ │ ├── OptimizationEnums.cs │ │ │ ├── PowerShellStreamType.cs │ │ │ ├── RegistryActionType.cs │ │ │ ├── RegistrySettingStatus.cs │ │ │ └── UacLevel.cs │ │ ├── Exceptions │ │ │ ├── AppLoadingException.cs │ │ │ ├── InstallationException.cs │ │ │ └── InstallationStatusException.cs │ │ ├── Extensions │ │ │ └── RegistrySettingExtensions.cs │ │ ├── Helpers │ │ │ └── ValidationHelper.cs │ │ ├── Interfaces │ │ │ ├── IApplicationCloseService.cs │ │ │ ├── ICommandService.cs │ │ │ ├── IConfigurationCoordinatorService.cs │ │ │ ├── IConfigurationService.cs │ │ │ ├── IDependencyManager.cs │ │ │ ├── IDialogService.cs │ │ │ ├── IFileSystemService.cs │ │ │ ├── IInternetConnectivityService.cs │ │ │ ├── ILogService.cs │ │ │ ├── IMessengerService.cs │ │ │ ├── INavigationService.cs │ │ │ ├── IParameterSerializer.cs │ │ │ ├── IParameterSerializerService.cs │ │ │ ├── IPowerShellExecutionService.cs │ │ │ ├── IRegistryService.cs │ │ │ ├── IScheduledTaskService.cs │ │ │ ├── IScriptBuilderService.cs │ │ │ ├── IScriptDetectionService.cs │ │ │ ├── IScriptFactory.cs │ │ │ ├── IScriptTemplateProvider.cs │ │ │ ├── ISearchService.cs │ │ │ ├── ISearchable.cs │ │ │ ├── ISettingItem.cs │ │ │ ├── ISettingsRegistry.cs │ │ │ ├── ISystemServices.cs │ │ │ ├── ITaskProgressService.cs │ │ │ ├── IUacSettingsService.cs │ │ │ ├── IUnifiedConfigurationService.cs │ │ │ ├── IVersionService.cs │ │ │ ├── IViewModel.cs │ │ │ └── IVisibleSettingItem.cs │ │ ├── Messaging │ │ │ └── Messages.cs │ │ ├── Models │ │ │ ├── ApplicationAction.cs │ │ │ ├── ApplicationSetting.cs │ │ │ ├── CommandSetting.cs │ │ │ ├── ConfigurationFile.cs │ │ │ ├── ConfigurationItem.cs │ │ │ ├── IInstallableItem.cs │ │ │ ├── InstallStatus.cs │ │ │ ├── LinkedRegistrySettings.cs │ │ │ ├── LogMessageEventArgs.cs │ │ │ ├── OperationResult.cs │ │ │ ├── OptimizationConfig.cs │ │ │ ├── OptimizationModels.cs │ │ │ ├── PowerShellProgressData.cs │ │ │ ├── RefreshResult.cs │ │ │ ├── RegistryModels.cs │ │ │ ├── RegistryTestResult.cs │ │ │ ├── TaskProgressDetail.cs │ │ │ ├── TaskProgressEventArgs.cs │ │ │ ├── UnifiedConfigurationFile.cs │ │ │ ├── VerificationResult.cs │ │ │ ├── VersionInfo.cs │ │ │ └── WinGetModels.cs │ │ ├── Services │ │ │ ├── DependencyManager.cs │ │ │ ├── LogService.cs │ │ │ ├── LoggingService.cs │ │ │ ├── ModelMapper.cs │ │ │ └── SettingsRegistry.cs │ │ └── Verification │ │ │ └── VerificationMethodBase.cs │ ├── Customize │ │ ├── Enums │ │ │ ├── CustomizationCategory.cs │ │ │ └── CustomizationSettingType.cs │ │ ├── Interfaces │ │ │ ├── IThemeService.cs │ │ │ └── IWallpaperService.cs │ │ └── Models │ │ │ ├── CustomizationGroup.cs │ │ │ ├── CustomizationSetting.cs │ │ │ ├── ExplorerCustomizations.cs │ │ │ ├── StartMenuCustomizations.cs │ │ │ ├── StartMenuLayouts.cs │ │ │ ├── TaskbarCustomizations.cs │ │ │ └── WindowsThemeSettings.cs │ ├── Optimize │ │ ├── Interfaces │ │ │ └── IPowerPlanService.cs │ │ └── Models │ │ │ ├── CustomUacSettings.cs │ │ │ ├── ExplorerOptimizations.cs │ │ │ ├── GamingandPerformanceOptimizations.cs │ │ │ ├── NotificationOptimizations.cs │ │ │ ├── OptimizationSetting.cs │ │ │ ├── PowerOptimizations.cs │ │ │ ├── PowerPlan.cs │ │ │ ├── PrivacyOptimizations.cs │ │ │ ├── SoundOptimizations.cs │ │ │ ├── UacOptimizations.cs │ │ │ └── UpdateOptimizations.cs │ ├── SoftwareApps │ │ ├── Enums │ │ │ └── InstallationErrorType.cs │ │ ├── Exceptions │ │ │ ├── InstallationException.cs │ │ │ ├── InstallationStatusException.cs │ │ │ └── RemovalException.cs │ │ ├── Helpers │ │ │ └── InstallationErrorHelper.cs │ │ ├── Interfaces │ │ │ ├── IAppDiscoveryService.cs │ │ │ ├── IAppInstallationCoordinatorService.cs │ │ │ ├── IAppInstallationService.cs │ │ │ ├── IAppLoadingService.cs │ │ │ ├── IAppRemovalService.cs │ │ │ ├── IAppService.cs │ │ │ ├── IAppVerificationService.cs │ │ │ ├── ICapabilityInstallationService.cs │ │ │ ├── ICapabilityRemovalService.cs │ │ │ ├── ICustomAppInstallationService.cs │ │ │ ├── IFeatureInstallationService.cs │ │ │ ├── IFeatureRemovalService.cs │ │ │ ├── IInstallationOrchestrator.cs │ │ │ ├── IInstallationService.cs │ │ │ ├── IInstallationStatusService.cs │ │ │ ├── IOneDriveInstallationService.cs │ │ │ ├── IPackageManager.cs │ │ │ ├── IScriptGenerationService.cs │ │ │ ├── ISpecialAppHandlerService.cs │ │ │ └── IWinGetInstallationService.cs │ │ └── Models │ │ │ ├── AppInfo.cs │ │ │ ├── AppModels.cs │ │ │ ├── CapabilityCatalog.cs │ │ │ ├── CapabilityInfo.cs │ │ │ ├── ExternalAppCatalog.cs │ │ │ ├── FeatureCatalog.cs │ │ │ ├── FeatureInfo.cs │ │ │ ├── RemovalScript.cs │ │ │ ├── SpecialAppHandler.cs │ │ │ ├── WindowsAppCatalog.cs │ │ │ └── WindowsPackageModels.cs │ └── UI │ │ └── Interfaces │ │ └── INotificationService.cs ├── Properties │ └── PublishProfiles │ │ ├── FolderProfile.pubxml │ │ └── FolderProfile.pubxml.user └── Winhance.Core.csproj ├── Winhance.Infrastructure ├── Features │ ├── Common │ │ ├── Extensions │ │ │ └── WinGetProgressExtensions.cs │ │ ├── Registry │ │ │ ├── RegistryExtensions.cs │ │ │ ├── RegistryService.cs │ │ │ ├── RegistryServiceCompletion.cs │ │ │ ├── RegistryServiceCore.cs │ │ │ ├── RegistryServiceEnsureKey.cs │ │ │ ├── RegistryServiceKeyOperations.cs │ │ │ ├── RegistryServicePowerShell.cs │ │ │ ├── RegistryServiceStatusMethods.cs │ │ │ ├── RegistryServiceTestMethods.cs │ │ │ ├── RegistryServiceUtilityOperations.cs │ │ │ └── RegistryServiceValueOperations.cs │ │ ├── ScriptGeneration │ │ │ ├── CapabilityScriptModifier.cs │ │ │ ├── CompositeScriptContentModifier.cs │ │ │ ├── FeatureScriptModifier.cs │ │ │ ├── ICapabilityScriptModifier.cs │ │ │ ├── IFeatureScriptModifier.cs │ │ │ ├── IPackageScriptModifier.cs │ │ │ ├── IRegistryScriptModifier.cs │ │ │ ├── IScriptContentModifier.cs │ │ │ ├── IScriptUpdateService.cs │ │ │ ├── PackageScriptModifier.cs │ │ │ ├── PowerShellScriptBuilderService.cs │ │ │ ├── PowerShellScriptFactory.cs │ │ │ ├── PowerShellScriptTemplateProvider.cs │ │ │ ├── RegistryScriptHelper.cs │ │ │ ├── RegistryScriptModifier.cs │ │ │ ├── ScheduledTaskService.cs │ │ │ ├── ScriptContentModifier.cs │ │ │ ├── ScriptGenerationService.cs │ │ │ ├── ScriptGenerationServiceExtensions.cs │ │ │ ├── ScriptModifierServiceExtensions.cs │ │ │ └── ScriptUpdateService.cs │ │ ├── Services │ │ │ ├── CommandService.cs │ │ │ ├── ConfigurationService.cs │ │ │ ├── FileSystemService.cs │ │ │ ├── FrameNavigationService.cs │ │ │ ├── InternetConnectivityService.cs │ │ │ ├── JsonParameterSerializer.cs │ │ │ ├── PowerShellExecutionService.cs │ │ │ ├── PowerShellHelper.cs │ │ │ ├── ScriptDetectionService.cs │ │ │ ├── SearchService.cs │ │ │ ├── TaskProgressService.cs │ │ │ ├── VersionService.cs │ │ │ └── WindowsSystemService.cs │ │ └── Utilities │ │ │ └── PowerShellFactory.cs │ ├── Customize │ │ └── Services │ │ │ ├── ThemeService.cs │ │ │ └── WallpaperService.cs │ ├── Optimize │ │ └── Services │ │ │ └── PowerPlanService.cs │ ├── SoftwareApps │ │ └── Services │ │ │ ├── AppDiscoveryService.cs │ │ │ ├── AppInstallationCoordinatorService.cs │ │ │ ├── AppInstallationService.cs │ │ │ ├── AppLoadingService.cs │ │ │ ├── AppRemovalService.cs │ │ │ ├── AppRemovalServiceAdapter.cs │ │ │ ├── AppServiceAdapter.cs │ │ │ ├── AppVerificationService.cs │ │ │ ├── BaseInstallationService.cs │ │ │ ├── CapabilityInstallationService.cs │ │ │ ├── CapabilityRemovalService.cs │ │ │ ├── CustomAppInstallationService.cs │ │ │ ├── FeatureInstallationService.cs │ │ │ ├── FeatureRemovalService.cs │ │ │ ├── InstallationOrchestrator.cs │ │ │ ├── InstallationStatusService.cs │ │ │ ├── OneDriveInstallationService.cs │ │ │ ├── PackageManager.cs │ │ │ ├── SpecialAppHandlerService.cs │ │ │ ├── WinGet │ │ │ ├── Implementations │ │ │ │ └── WinGetInstaller.cs │ │ │ ├── Interfaces │ │ │ │ ├── IInstallationVerifier.cs │ │ │ │ ├── IVerificationMethod.cs │ │ │ │ └── IWinGetInstaller.cs │ │ │ ├── Utilities │ │ │ │ ├── WinGetInstallationScript.cs │ │ │ │ └── WinGetOutputParser.cs │ │ │ └── Verification │ │ │ │ ├── CompositeInstallationVerifier.cs │ │ │ │ ├── Methods │ │ │ │ ├── AppxPackageVerificationMethod.cs │ │ │ │ ├── FileSystemVerificationMethod.cs │ │ │ │ ├── RegistryVerificationMethod.cs │ │ │ │ └── WinGetVerificationMethod.cs │ │ │ │ └── VerificationMethodBase.cs │ │ │ ├── WinGetInstallationService.cs.bak │ │ │ └── WinGetInstallationServiceAdapter.cs │ └── UI │ │ └── Services │ │ └── NotificationService.cs ├── Properties │ └── PublishProfiles │ │ ├── FolderProfile.pubxml │ │ └── FolderProfile.pubxml.user └── Winhance.Infrastructure.csproj └── Winhance.WPF ├── App.manifest ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Features ├── Common │ ├── Behaviors │ │ └── ResponsiveLayoutBehavior.cs │ ├── Controls │ │ ├── MaterialSymbol.xaml │ │ ├── MaterialSymbol.xaml.cs │ │ ├── MoreMenu.xaml │ │ ├── MoreMenu.xaml.cs │ │ ├── ProgressIndicator.cs │ │ ├── ResponsiveScrollViewer.cs │ │ ├── SearchBox.xaml │ │ ├── SearchBox.xaml.cs │ │ ├── TaskProgressControl.xaml │ │ └── TaskProgressControl.xaml.cs │ ├── Converters │ │ ├── AppliedStatusToVisibilityConverter.cs │ │ ├── BoolToArrowConverter.cs │ │ ├── BoolToChevronConverter.cs │ │ ├── BooleanConverter.cs │ │ ├── BooleanToGridSpanConverter.cs │ │ ├── BooleanToReinstallableIconConverter.cs │ │ ├── BooleanToReinstallableTextConverter.cs │ │ ├── BooleanToThemeConverter.cs │ │ ├── BooleanToThemeIconConverter.cs │ │ ├── BooleanToVisibilityConverter.cs │ │ ├── CategoryToIconConverter.cs │ │ ├── CountToVisibilityConverter.cs │ │ ├── EnumToVisibilityConverter.cs │ │ ├── GreaterThanOneConverter.cs │ │ ├── IconNameToSymbolConverter.cs │ │ ├── InstalledStatusToColorConverter.cs │ │ ├── InstalledStatusToTextConverter.cs │ │ ├── InverseBooleanConverter.cs │ │ ├── InverseBooleanToVisibilityConverter.cs │ │ ├── InverseCountToVisibilityConverter.cs │ │ ├── IsPrimaryToVisibilityConverter.cs │ │ ├── LogLevelToColorConverter.cs │ │ ├── NullToVisibilityConverter.cs │ │ ├── RegistryHiveToFullNameConverter.cs │ │ ├── RegistryValueStatusConverter.cs │ │ ├── RemoveActionToVisibilityConverter.cs │ │ ├── ScriptStatusToColorConverter.cs │ │ ├── ScriptStatusToTextConverter.cs │ │ ├── StatusToColorConverter.cs │ │ ├── StatusToTextConverter.cs │ │ ├── StringToMaximizeIconConverter.cs │ │ ├── ViewNameToBackgroundConverter.cs │ │ └── WindowStateToCommandConverter.cs │ ├── Extensions │ │ └── SettingViewModelExtensions.cs │ ├── Interfaces │ │ └── IViewModelLocator.cs │ ├── Messages │ │ └── ResetExpansionStateMessage.cs │ ├── Models │ │ ├── ApplicationSettingGroup.cs │ │ ├── ApplicationSettingItem.cs │ │ ├── LinkedRegistrySettingWithValue.cs │ │ └── LogMessageViewModel.cs │ ├── Resources │ │ ├── Converters │ │ │ └── Converters.xaml │ │ ├── Dimensions │ │ │ └── Dimensions.xaml │ │ ├── Icons.xaml │ │ ├── MaterialSymbols.cs │ │ ├── ResourceDictionary.xaml │ │ ├── Styles │ │ │ ├── AppItemStyles.xaml │ │ │ ├── ButtonStyles.xaml │ │ │ ├── CheckBoxStyles.xaml │ │ │ ├── CombinedSettingTooltipTemplate.xaml │ │ │ ├── ComboBoxStyles.xaml │ │ │ ├── CommandTooltipTemplate.xaml │ │ │ ├── ContainerStyles.xaml │ │ │ ├── DialogStyles.xaml │ │ │ ├── MenuStyles.xaml │ │ │ ├── ProgressIndicatorStyles.xaml │ │ │ ├── RegistryTooltipTemplate.xaml │ │ │ ├── ResponsiveStyles.xaml │ │ │ ├── ScrollBarStyles.xaml │ │ │ ├── SliderStyles.xaml │ │ │ ├── Styles.xaml │ │ │ ├── TextStyles.xaml │ │ │ ├── ToggleSwitchStyles.xaml │ │ │ └── ToolTipStyles.xaml │ │ ├── Theme │ │ │ ├── ColorDictionary.xaml │ │ │ ├── IThemeManager.cs │ │ │ └── ThemeManager.cs │ │ └── Themes │ │ │ └── Themes.xaml │ ├── Services │ │ ├── ApplicationCloseService.cs │ │ ├── Configuration │ │ │ ├── ConfigurationApplierService.cs │ │ │ ├── ConfigurationPropertyUpdater.cs │ │ │ ├── ConfigurationServiceExtensions.cs │ │ │ ├── CustomizeConfigurationApplier.cs │ │ │ ├── ExternalAppsConfigurationApplier.cs │ │ │ ├── IConfigurationApplierService.cs │ │ │ ├── IConfigurationPropertyUpdater.cs │ │ │ ├── ISectionConfigurationApplier.cs │ │ │ ├── IViewModelRefresher.cs │ │ │ ├── OptimizeConfigurationApplier.cs │ │ │ ├── ViewModelRefresher.cs │ │ │ └── WindowsAppsConfigurationApplier.cs │ │ ├── ConfigurationCollectorService.cs │ │ ├── ConfigurationCoordinatorService.cs │ │ ├── ConfigurationUIService.cs │ │ ├── DesignTimeDataService.cs │ │ ├── DialogService.cs │ │ ├── IDesignTimeDataService.cs │ │ ├── MessengerService.cs │ │ ├── UacSettingsService.cs │ │ ├── UnifiedConfigurationService.cs │ │ ├── UserPreferencesService.cs │ │ └── ViewModelLocator.cs │ ├── Theme │ │ ├── FontLoader.cs │ │ └── MaterialSymbols.cs │ ├── Utilities │ │ ├── FileLogger.cs │ │ └── WindowSizeManager.cs │ ├── ViewModels │ │ ├── ApplicationSettingViewModel.cs │ │ ├── BaseSettingsViewModel.cs │ │ ├── BaseViewModel.cs │ │ ├── ConfigurationViewModelBase.cs │ │ ├── LoadingWindowViewModel.cs │ │ ├── MainViewModel.cs │ │ ├── MoreMenuViewModel.cs │ │ ├── SearchableViewModel.cs │ │ ├── UnifiedConfigurationDialogViewModel.cs │ │ └── UpdateNotificationViewModel.cs │ └── Views │ │ ├── CustomDialog.xaml │ │ ├── CustomDialog.xaml.cs │ │ ├── DonationDialog.xaml │ │ ├── DonationDialog.xaml.cs │ │ ├── LoadingWindow.xaml │ │ ├── LoadingWindow.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── UnifiedConfigurationDialog.xaml │ │ ├── UnifiedConfigurationDialog.xaml.cs │ │ ├── UpdateDialog.xaml │ │ ├── UpdateDialog.xaml.cs │ │ ├── UpdateNotificationDialog.xaml │ │ └── UpdateNotificationDialog.xaml.cs ├── Customize │ ├── ViewModels │ │ ├── CustomizeViewModel.cs │ │ ├── ExplorerCustomizationsViewModel.cs │ │ ├── StartMenuCustomizationsViewModel.cs │ │ ├── TaskbarCustomizationsViewModel.cs │ │ └── WindowsThemeCustomizationsViewModel.cs │ └── Views │ │ ├── CustomizeView.xaml │ │ ├── CustomizeView.xaml.cs │ │ ├── ExplorerCustomizationsView.cs │ │ ├── ExplorerCustomizationsView.xaml │ │ ├── StartMenuCustomizationsView.xaml │ │ ├── StartMenuCustomizationsView.xaml.cs │ │ ├── TaskbarCustomizationsView.xaml │ │ ├── TaskbarCustomizationsView.xaml.cs │ │ ├── WindowsThemeCustomizationsView.xaml │ │ └── WindowsThemeCustomizationsView.xaml.cs ├── Optimize │ ├── ViewModels │ │ ├── ExplorerOptimizationsViewModel.cs │ │ ├── GamingandPerformanceOptimizationsViewModel.cs │ │ ├── NotificationOptimizationsViewModel.cs │ │ ├── OptimizeViewModel.cs │ │ ├── PowerOptimizationsViewModel.cs │ │ ├── PrivacyOptimizationsViewModel.cs │ │ ├── SoundOptimizationsViewModel.cs │ │ ├── UpdateOptimizationsViewModel.cs │ │ └── WindowsSecurityOptimizationsViewModel.cs │ └── Views │ │ ├── ExplorerOptimizationsView.cs │ │ ├── ExplorerOptimizationsView.xaml │ │ ├── GamingandPerformanceOptimizationsView.xaml │ │ ├── GamingandPerformanceOptimizationsView.xaml.cs │ │ ├── NotificationOptimizationsView.xaml │ │ ├── NotificationOptimizationsView.xaml.cs │ │ ├── OptimizeView.xaml │ │ ├── OptimizeView.xaml.cs │ │ ├── PowerOptimizationsView.xaml │ │ ├── PowerOptimizationsView.xaml.cs │ │ ├── PrivacyOptimizationsView.xaml │ │ ├── PrivacyOptimizationsView.xaml.cs │ │ ├── SoundOptimizationsView.xaml │ │ ├── SoundOptimizationsView.xaml.cs │ │ ├── UpdateOptimizationsView.xaml │ │ ├── UpdateOptimizationsView.xaml.cs │ │ ├── WindowsSecurityOptimizationsView.xaml │ │ └── WindowsSecurityOptimizationsView.xaml.cs └── SoftwareApps │ ├── Models │ ├── ExternalApp.cs │ ├── ExternalAppSettingItem.cs │ ├── ThirdPartyApp.cs │ ├── WindowsApp.cs │ └── WindowsAppSettingItem.cs │ ├── Services │ └── SoftwareAppsDialogService.cs │ ├── ViewModels │ ├── AppListViewModel.cs │ ├── BaseInstallationViewModel.cs │ ├── CapabilitiesViewModel.cs │ ├── ExternalAppsCategoryViewModel.cs │ ├── ExternalAppsViewModel.cs │ ├── SoftwareAppsViewModel.cs │ └── WindowsAppsViewModel.cs │ └── Views │ ├── ExternalAppsView.xaml │ ├── ExternalAppsView.xaml.cs │ ├── SoftwareAppsDialog.cs │ ├── SoftwareAppsDialog.xaml │ ├── SoftwareAppsView.xaml │ ├── SoftwareAppsView.xaml.cs │ ├── WindowsAppsView.xaml │ └── WindowsAppsView.xaml.cs ├── Properties ├── PublishProfiles │ ├── FolderProfile.pubxml │ └── FolderProfile.pubxml.user ├── Settings.Designer.cs └── Settings.settings ├── Resources ├── AppIcons │ ├── LICENSE.txt │ ├── winhance-rocket-black-transparent-bg.ico │ ├── winhance-rocket-white-transparent-bg.ico │ └── winhance-rocket.ico └── Fonts │ └── MaterialSymbolsOutlined.ttf └── Winhance.WPF.csproj /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_suggestion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/.github/ISSUE_TEMPLATE/feature_suggestion.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/.github/ISSUE_TEMPLATE/new_feature.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/RELEASE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/.github/RELEASE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/RELEASE_TEMPLATE_SIMPLIFIED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/.github/RELEASE_TEMPLATE_SIMPLIFIED.md -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/README.md -------------------------------------------------------------------------------- /Winhance.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/Winhance.ps1 -------------------------------------------------------------------------------- /Winhance.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/Winhance.sln -------------------------------------------------------------------------------- /extras/Winhance.Installer.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/extras/Winhance.Installer.iss -------------------------------------------------------------------------------- /extras/build-and-package.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/extras/build-and-package.ps1 -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Enums/CancellationReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Enums/CancellationReason.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Enums/ControlType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Enums/ControlType.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Enums/LinkedSettingsLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Enums/LinkedSettingsLogic.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Enums/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Enums/LogLevel.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Enums/OptimizationEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Enums/OptimizationEnums.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Enums/PowerShellStreamType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Enums/PowerShellStreamType.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Enums/RegistryActionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Enums/RegistryActionType.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Enums/RegistrySettingStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Enums/RegistrySettingStatus.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Enums/UacLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Enums/UacLevel.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Exceptions/AppLoadingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Exceptions/AppLoadingException.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Exceptions/InstallationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Exceptions/InstallationException.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Exceptions/InstallationStatusException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Exceptions/InstallationStatusException.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Extensions/RegistrySettingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Extensions/RegistrySettingExtensions.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Helpers/ValidationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Helpers/ValidationHelper.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/IApplicationCloseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/IApplicationCloseService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/ICommandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/ICommandService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/IConfigurationCoordinatorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/IConfigurationCoordinatorService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/IConfigurationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/IConfigurationService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/IDependencyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/IDependencyManager.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/IDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/IDialogService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/IFileSystemService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/IFileSystemService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/IInternetConnectivityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/IInternetConnectivityService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/ILogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/ILogService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/IMessengerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/IMessengerService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/INavigationService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/IParameterSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/IParameterSerializer.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/IParameterSerializerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/IParameterSerializerService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/IPowerShellExecutionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/IPowerShellExecutionService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/IRegistryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/IRegistryService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/IScheduledTaskService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/IScheduledTaskService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/IScriptBuilderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/IScriptBuilderService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/IScriptDetectionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/IScriptDetectionService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/IScriptFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/IScriptFactory.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/IScriptTemplateProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/IScriptTemplateProvider.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/ISearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/ISearchService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/ISearchable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/ISearchable.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/ISettingItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/ISettingItem.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/ISettingsRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/ISettingsRegistry.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/ISystemServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/ISystemServices.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/ITaskProgressService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/ITaskProgressService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/IUacSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/IUacSettingsService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/IUnifiedConfigurationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/IUnifiedConfigurationService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/IVersionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/IVersionService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/IViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/IViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Interfaces/IVisibleSettingItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Interfaces/IVisibleSettingItem.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Messaging/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Messaging/Messages.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Models/ApplicationAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Models/ApplicationAction.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Models/ApplicationSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Models/ApplicationSetting.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Models/CommandSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Models/CommandSetting.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Models/ConfigurationFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Models/ConfigurationFile.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Models/ConfigurationItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Models/ConfigurationItem.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Models/IInstallableItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Models/IInstallableItem.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Models/InstallStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Models/InstallStatus.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Models/LinkedRegistrySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Models/LinkedRegistrySettings.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Models/LogMessageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Models/LogMessageEventArgs.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Models/OperationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Models/OperationResult.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Models/OptimizationConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Models/OptimizationConfig.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Models/OptimizationModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Models/OptimizationModels.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Models/PowerShellProgressData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Models/PowerShellProgressData.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Models/RefreshResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Models/RefreshResult.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Models/RegistryModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Models/RegistryModels.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Models/RegistryTestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Models/RegistryTestResult.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Models/TaskProgressDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Models/TaskProgressDetail.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Models/TaskProgressEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Models/TaskProgressEventArgs.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Models/UnifiedConfigurationFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Models/UnifiedConfigurationFile.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Models/VerificationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Models/VerificationResult.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Models/VersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Models/VersionInfo.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Models/WinGetModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Models/WinGetModels.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Services/DependencyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Services/DependencyManager.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Services/LogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Services/LogService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Services/LoggingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Services/LoggingService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Services/ModelMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Services/ModelMapper.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Services/SettingsRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Services/SettingsRegistry.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Common/Verification/VerificationMethodBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Common/Verification/VerificationMethodBase.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Customize/Enums/CustomizationCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Customize/Enums/CustomizationCategory.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Customize/Enums/CustomizationSettingType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Customize/Enums/CustomizationSettingType.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Customize/Interfaces/IThemeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Customize/Interfaces/IThemeService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Customize/Interfaces/IWallpaperService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Customize/Interfaces/IWallpaperService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Customize/Models/CustomizationGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Customize/Models/CustomizationGroup.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Customize/Models/CustomizationSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Customize/Models/CustomizationSetting.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Customize/Models/ExplorerCustomizations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Customize/Models/ExplorerCustomizations.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Customize/Models/StartMenuCustomizations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Customize/Models/StartMenuCustomizations.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Customize/Models/StartMenuLayouts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Customize/Models/StartMenuLayouts.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Customize/Models/TaskbarCustomizations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Customize/Models/TaskbarCustomizations.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Customize/Models/WindowsThemeSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Customize/Models/WindowsThemeSettings.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Optimize/Interfaces/IPowerPlanService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Optimize/Interfaces/IPowerPlanService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Optimize/Models/CustomUacSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Optimize/Models/CustomUacSettings.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Optimize/Models/ExplorerOptimizations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Optimize/Models/ExplorerOptimizations.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Optimize/Models/GamingandPerformanceOptimizations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Optimize/Models/GamingandPerformanceOptimizations.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Optimize/Models/NotificationOptimizations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Optimize/Models/NotificationOptimizations.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Optimize/Models/OptimizationSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Optimize/Models/OptimizationSetting.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Optimize/Models/PowerOptimizations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Optimize/Models/PowerOptimizations.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Optimize/Models/PowerPlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Optimize/Models/PowerPlan.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Optimize/Models/PrivacyOptimizations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Optimize/Models/PrivacyOptimizations.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Optimize/Models/SoundOptimizations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Optimize/Models/SoundOptimizations.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Optimize/Models/UacOptimizations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Optimize/Models/UacOptimizations.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/Optimize/Models/UpdateOptimizations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/Optimize/Models/UpdateOptimizations.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Enums/InstallationErrorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Enums/InstallationErrorType.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Exceptions/InstallationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Exceptions/InstallationException.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Exceptions/InstallationStatusException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Exceptions/InstallationStatusException.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Exceptions/RemovalException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Exceptions/RemovalException.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Helpers/InstallationErrorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Helpers/InstallationErrorHelper.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Interfaces/IAppDiscoveryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Interfaces/IAppDiscoveryService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Interfaces/IAppInstallationCoordinatorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Interfaces/IAppInstallationCoordinatorService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Interfaces/IAppInstallationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Interfaces/IAppInstallationService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Interfaces/IAppLoadingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Interfaces/IAppLoadingService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Interfaces/IAppRemovalService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Interfaces/IAppRemovalService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Interfaces/IAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Interfaces/IAppService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Interfaces/IAppVerificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Interfaces/IAppVerificationService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Interfaces/ICapabilityInstallationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Interfaces/ICapabilityInstallationService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Interfaces/ICapabilityRemovalService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Interfaces/ICapabilityRemovalService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Interfaces/ICustomAppInstallationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Interfaces/ICustomAppInstallationService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Interfaces/IFeatureInstallationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Interfaces/IFeatureInstallationService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Interfaces/IFeatureRemovalService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Interfaces/IFeatureRemovalService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Interfaces/IInstallationOrchestrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Interfaces/IInstallationOrchestrator.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Interfaces/IInstallationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Interfaces/IInstallationService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Interfaces/IInstallationStatusService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Interfaces/IInstallationStatusService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Interfaces/IOneDriveInstallationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Interfaces/IOneDriveInstallationService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Interfaces/IPackageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Interfaces/IPackageManager.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Interfaces/IScriptGenerationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Interfaces/IScriptGenerationService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Interfaces/ISpecialAppHandlerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Interfaces/ISpecialAppHandlerService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Interfaces/IWinGetInstallationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Interfaces/IWinGetInstallationService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Models/AppInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Models/AppInfo.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Models/AppModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Models/AppModels.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Models/CapabilityCatalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Models/CapabilityCatalog.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Models/CapabilityInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Models/CapabilityInfo.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Models/ExternalAppCatalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Models/ExternalAppCatalog.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Models/FeatureCatalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Models/FeatureCatalog.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Models/FeatureInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Models/FeatureInfo.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Models/RemovalScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Models/RemovalScript.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Models/SpecialAppHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Models/SpecialAppHandler.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Models/WindowsAppCatalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Models/WindowsAppCatalog.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/SoftwareApps/Models/WindowsPackageModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/SoftwareApps/Models/WindowsPackageModels.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Features/UI/Interfaces/INotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Features/UI/Interfaces/INotificationService.cs -------------------------------------------------------------------------------- /src/Winhance.Core/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /src/Winhance.Core/Properties/PublishProfiles/FolderProfile.pubxml.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Properties/PublishProfiles/FolderProfile.pubxml.user -------------------------------------------------------------------------------- /src/Winhance.Core/Winhance.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Core/Winhance.Core.csproj -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/Extensions/WinGetProgressExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/Extensions/WinGetProgressExtensions.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/Registry/RegistryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/Registry/RegistryExtensions.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/Registry/RegistryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/Registry/RegistryService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/Registry/RegistryServiceCompletion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/Registry/RegistryServiceCompletion.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/Registry/RegistryServiceCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/Registry/RegistryServiceCore.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/Registry/RegistryServiceEnsureKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/Registry/RegistryServiceEnsureKey.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/Registry/RegistryServiceKeyOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/Registry/RegistryServiceKeyOperations.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/Registry/RegistryServicePowerShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/Registry/RegistryServicePowerShell.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/Registry/RegistryServiceStatusMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/Registry/RegistryServiceStatusMethods.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/Registry/RegistryServiceTestMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/Registry/RegistryServiceTestMethods.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/Registry/RegistryServiceUtilityOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/Registry/RegistryServiceUtilityOperations.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/Registry/RegistryServiceValueOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/Registry/RegistryServiceValueOperations.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/ScriptGeneration/CapabilityScriptModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/ScriptGeneration/CapabilityScriptModifier.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/ScriptGeneration/CompositeScriptContentModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/ScriptGeneration/CompositeScriptContentModifier.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/ScriptGeneration/FeatureScriptModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/ScriptGeneration/FeatureScriptModifier.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/ScriptGeneration/ICapabilityScriptModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/ScriptGeneration/ICapabilityScriptModifier.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/ScriptGeneration/IFeatureScriptModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/ScriptGeneration/IFeatureScriptModifier.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/ScriptGeneration/IPackageScriptModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/ScriptGeneration/IPackageScriptModifier.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/ScriptGeneration/IRegistryScriptModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/ScriptGeneration/IRegistryScriptModifier.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/ScriptGeneration/IScriptContentModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/ScriptGeneration/IScriptContentModifier.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/ScriptGeneration/IScriptUpdateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/ScriptGeneration/IScriptUpdateService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/ScriptGeneration/PackageScriptModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/ScriptGeneration/PackageScriptModifier.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/ScriptGeneration/PowerShellScriptBuilderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/ScriptGeneration/PowerShellScriptBuilderService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/ScriptGeneration/PowerShellScriptFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/ScriptGeneration/PowerShellScriptFactory.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/ScriptGeneration/PowerShellScriptTemplateProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/ScriptGeneration/PowerShellScriptTemplateProvider.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/ScriptGeneration/RegistryScriptHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/ScriptGeneration/RegistryScriptHelper.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/ScriptGeneration/RegistryScriptModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/ScriptGeneration/RegistryScriptModifier.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/ScriptGeneration/ScheduledTaskService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/ScriptGeneration/ScheduledTaskService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/ScriptGeneration/ScriptContentModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/ScriptGeneration/ScriptContentModifier.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/ScriptGeneration/ScriptGenerationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/ScriptGeneration/ScriptGenerationService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/ScriptGeneration/ScriptGenerationServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/ScriptGeneration/ScriptGenerationServiceExtensions.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/ScriptGeneration/ScriptModifierServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/ScriptGeneration/ScriptModifierServiceExtensions.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/ScriptGeneration/ScriptUpdateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/ScriptGeneration/ScriptUpdateService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/Services/CommandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/Services/CommandService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/Services/ConfigurationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/Services/ConfigurationService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/Services/FileSystemService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/Services/FileSystemService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/Services/FrameNavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/Services/FrameNavigationService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/Services/InternetConnectivityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/Services/InternetConnectivityService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/Services/JsonParameterSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/Services/JsonParameterSerializer.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/Services/PowerShellExecutionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/Services/PowerShellExecutionService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/Services/PowerShellHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/Services/PowerShellHelper.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/Services/ScriptDetectionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/Services/ScriptDetectionService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/Services/SearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/Services/SearchService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/Services/TaskProgressService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/Services/TaskProgressService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/Services/VersionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/Services/VersionService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/Services/WindowsSystemService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/Services/WindowsSystemService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Common/Utilities/PowerShellFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Common/Utilities/PowerShellFactory.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Customize/Services/ThemeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Customize/Services/ThemeService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Customize/Services/WallpaperService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Customize/Services/WallpaperService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/Optimize/Services/PowerPlanService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/Optimize/Services/PowerPlanService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/AppDiscoveryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/AppDiscoveryService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/AppInstallationCoordinatorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/AppInstallationCoordinatorService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/AppInstallationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/AppInstallationService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/AppLoadingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/AppLoadingService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/AppRemovalService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/AppRemovalService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/AppRemovalServiceAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/AppRemovalServiceAdapter.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/AppServiceAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/AppServiceAdapter.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/AppVerificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/AppVerificationService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/BaseInstallationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/BaseInstallationService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/CapabilityInstallationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/CapabilityInstallationService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/CapabilityRemovalService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/CapabilityRemovalService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/CustomAppInstallationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/CustomAppInstallationService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/FeatureInstallationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/FeatureInstallationService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/FeatureRemovalService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/FeatureRemovalService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/InstallationOrchestrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/InstallationOrchestrator.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/InstallationStatusService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/InstallationStatusService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/OneDriveInstallationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/OneDriveInstallationService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/PackageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/PackageManager.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/SpecialAppHandlerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/SpecialAppHandlerService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGet/Implementations/WinGetInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGet/Implementations/WinGetInstaller.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGet/Interfaces/IInstallationVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGet/Interfaces/IInstallationVerifier.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGet/Interfaces/IVerificationMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGet/Interfaces/IVerificationMethod.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGet/Interfaces/IWinGetInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGet/Interfaces/IWinGetInstaller.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGet/Utilities/WinGetInstallationScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGet/Utilities/WinGetInstallationScript.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGet/Utilities/WinGetOutputParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGet/Utilities/WinGetOutputParser.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGet/Verification/CompositeInstallationVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGet/Verification/CompositeInstallationVerifier.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGet/Verification/Methods/AppxPackageVerificationMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGet/Verification/Methods/AppxPackageVerificationMethod.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGet/Verification/Methods/FileSystemVerificationMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGet/Verification/Methods/FileSystemVerificationMethod.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGet/Verification/Methods/RegistryVerificationMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGet/Verification/Methods/RegistryVerificationMethod.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGet/Verification/Methods/WinGetVerificationMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGet/Verification/Methods/WinGetVerificationMethod.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGet/Verification/VerificationMethodBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGet/Verification/VerificationMethodBase.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGetInstallationService.cs.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGetInstallationService.cs.bak -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGetInstallationServiceAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/SoftwareApps/Services/WinGetInstallationServiceAdapter.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Features/UI/Services/NotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Features/UI/Services/NotificationService.cs -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Properties/PublishProfiles/FolderProfile.pubxml.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Properties/PublishProfiles/FolderProfile.pubxml.user -------------------------------------------------------------------------------- /src/Winhance.Infrastructure/Winhance.Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.Infrastructure/Winhance.Infrastructure.csproj -------------------------------------------------------------------------------- /src/Winhance.WPF/App.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/App.manifest -------------------------------------------------------------------------------- /src/Winhance.WPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/App.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/App.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Behaviors/ResponsiveLayoutBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Behaviors/ResponsiveLayoutBehavior.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Controls/MaterialSymbol.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Controls/MaterialSymbol.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Controls/MaterialSymbol.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Controls/MaterialSymbol.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Controls/MoreMenu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Controls/MoreMenu.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Controls/MoreMenu.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Controls/MoreMenu.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Controls/ProgressIndicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Controls/ProgressIndicator.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Controls/ResponsiveScrollViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Controls/ResponsiveScrollViewer.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Controls/SearchBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Controls/SearchBox.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Controls/SearchBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Controls/SearchBox.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Controls/TaskProgressControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Controls/TaskProgressControl.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Controls/TaskProgressControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Controls/TaskProgressControl.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/AppliedStatusToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/AppliedStatusToVisibilityConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/BoolToArrowConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/BoolToArrowConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/BoolToChevronConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/BoolToChevronConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/BooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/BooleanConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/BooleanToGridSpanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/BooleanToGridSpanConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/BooleanToReinstallableIconConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/BooleanToReinstallableIconConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/BooleanToReinstallableTextConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/BooleanToReinstallableTextConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/BooleanToThemeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/BooleanToThemeConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/BooleanToThemeIconConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/BooleanToThemeIconConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/BooleanToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/BooleanToVisibilityConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/CategoryToIconConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/CategoryToIconConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/CountToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/CountToVisibilityConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/EnumToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/EnumToVisibilityConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/GreaterThanOneConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/GreaterThanOneConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/IconNameToSymbolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/IconNameToSymbolConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/InstalledStatusToColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/InstalledStatusToColorConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/InstalledStatusToTextConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/InstalledStatusToTextConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/InverseBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/InverseBooleanConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/InverseBooleanToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/InverseBooleanToVisibilityConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/InverseCountToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/InverseCountToVisibilityConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/IsPrimaryToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/IsPrimaryToVisibilityConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/LogLevelToColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/LogLevelToColorConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/NullToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/NullToVisibilityConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/RegistryHiveToFullNameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/RegistryHiveToFullNameConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/RegistryValueStatusConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/RegistryValueStatusConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/RemoveActionToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/RemoveActionToVisibilityConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/ScriptStatusToColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/ScriptStatusToColorConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/ScriptStatusToTextConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/ScriptStatusToTextConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/StatusToColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/StatusToColorConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/StatusToTextConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/StatusToTextConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/StringToMaximizeIconConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/StringToMaximizeIconConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/ViewNameToBackgroundConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/ViewNameToBackgroundConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Converters/WindowStateToCommandConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Converters/WindowStateToCommandConverter.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Extensions/SettingViewModelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Extensions/SettingViewModelExtensions.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Interfaces/IViewModelLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Interfaces/IViewModelLocator.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Messages/ResetExpansionStateMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Messages/ResetExpansionStateMessage.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Models/ApplicationSettingGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Models/ApplicationSettingGroup.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Models/ApplicationSettingItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Models/ApplicationSettingItem.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Models/LinkedRegistrySettingWithValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Models/LinkedRegistrySettingWithValue.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Models/LogMessageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Models/LogMessageViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/Converters/Converters.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/Converters/Converters.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/Dimensions/Dimensions.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/Dimensions/Dimensions.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/Icons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/Icons.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/MaterialSymbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/MaterialSymbols.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/ResourceDictionary.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/ResourceDictionary.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/Styles/AppItemStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/Styles/AppItemStyles.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/Styles/ButtonStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/Styles/ButtonStyles.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/Styles/CheckBoxStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/Styles/CheckBoxStyles.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/Styles/CombinedSettingTooltipTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/Styles/CombinedSettingTooltipTemplate.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/Styles/ComboBoxStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/Styles/ComboBoxStyles.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/Styles/CommandTooltipTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/Styles/CommandTooltipTemplate.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/Styles/ContainerStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/Styles/ContainerStyles.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/Styles/DialogStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/Styles/DialogStyles.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/Styles/MenuStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/Styles/MenuStyles.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/Styles/ProgressIndicatorStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/Styles/ProgressIndicatorStyles.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/Styles/RegistryTooltipTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/Styles/RegistryTooltipTemplate.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/Styles/ResponsiveStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/Styles/ResponsiveStyles.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/Styles/ScrollBarStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/Styles/ScrollBarStyles.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/Styles/SliderStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/Styles/SliderStyles.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/Styles/Styles.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/Styles/TextStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/Styles/TextStyles.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/Styles/ToggleSwitchStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/Styles/ToggleSwitchStyles.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/Styles/ToolTipStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/Styles/ToolTipStyles.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/Theme/ColorDictionary.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/Theme/ColorDictionary.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/Theme/IThemeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/Theme/IThemeManager.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/Theme/ThemeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/Theme/ThemeManager.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Resources/Themes/Themes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Resources/Themes/Themes.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Services/ApplicationCloseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Services/ApplicationCloseService.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Services/Configuration/ConfigurationApplierService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Services/Configuration/ConfigurationApplierService.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Services/Configuration/ConfigurationPropertyUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Services/Configuration/ConfigurationPropertyUpdater.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Services/Configuration/ConfigurationServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Services/Configuration/ConfigurationServiceExtensions.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Services/Configuration/CustomizeConfigurationApplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Services/Configuration/CustomizeConfigurationApplier.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Services/Configuration/ExternalAppsConfigurationApplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Services/Configuration/ExternalAppsConfigurationApplier.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Services/Configuration/IConfigurationApplierService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Services/Configuration/IConfigurationApplierService.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Services/Configuration/IConfigurationPropertyUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Services/Configuration/IConfigurationPropertyUpdater.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Services/Configuration/ISectionConfigurationApplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Services/Configuration/ISectionConfigurationApplier.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Services/Configuration/IViewModelRefresher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Services/Configuration/IViewModelRefresher.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Services/Configuration/OptimizeConfigurationApplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Services/Configuration/OptimizeConfigurationApplier.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Services/Configuration/ViewModelRefresher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Services/Configuration/ViewModelRefresher.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Services/Configuration/WindowsAppsConfigurationApplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Services/Configuration/WindowsAppsConfigurationApplier.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Services/ConfigurationCollectorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Services/ConfigurationCollectorService.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Services/ConfigurationCoordinatorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Services/ConfigurationCoordinatorService.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Services/ConfigurationUIService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Services/ConfigurationUIService.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Services/DesignTimeDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Services/DesignTimeDataService.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Services/DialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Services/DialogService.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Services/IDesignTimeDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Services/IDesignTimeDataService.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Services/MessengerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Services/MessengerService.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Services/UacSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Services/UacSettingsService.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Services/UnifiedConfigurationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Services/UnifiedConfigurationService.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Services/UserPreferencesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Services/UserPreferencesService.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Services/ViewModelLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Services/ViewModelLocator.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Theme/FontLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Theme/FontLoader.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Theme/MaterialSymbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Theme/MaterialSymbols.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Utilities/FileLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Utilities/FileLogger.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Utilities/WindowSizeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Utilities/WindowSizeManager.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/ViewModels/ApplicationSettingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/ViewModels/ApplicationSettingViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/ViewModels/BaseSettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/ViewModels/BaseSettingsViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/ViewModels/ConfigurationViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/ViewModels/ConfigurationViewModelBase.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/ViewModels/LoadingWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/ViewModels/LoadingWindowViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/ViewModels/MoreMenuViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/ViewModels/MoreMenuViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/ViewModels/SearchableViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/ViewModels/SearchableViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/ViewModels/UnifiedConfigurationDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/ViewModels/UnifiedConfigurationDialogViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/ViewModels/UpdateNotificationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/ViewModels/UpdateNotificationViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Views/CustomDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Views/CustomDialog.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Views/CustomDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Views/CustomDialog.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Views/DonationDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Views/DonationDialog.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Views/DonationDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Views/DonationDialog.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Views/LoadingWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Views/LoadingWindow.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Views/LoadingWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Views/LoadingWindow.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Views/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Views/MainWindow.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Views/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Views/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Views/UnifiedConfigurationDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Views/UnifiedConfigurationDialog.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Views/UnifiedConfigurationDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Views/UnifiedConfigurationDialog.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Views/UpdateDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Views/UpdateDialog.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Views/UpdateDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Views/UpdateDialog.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Views/UpdateNotificationDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Views/UpdateNotificationDialog.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Common/Views/UpdateNotificationDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Common/Views/UpdateNotificationDialog.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Customize/ViewModels/CustomizeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Customize/ViewModels/CustomizeViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Customize/ViewModels/ExplorerCustomizationsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Customize/ViewModels/ExplorerCustomizationsViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Customize/ViewModels/StartMenuCustomizationsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Customize/ViewModels/StartMenuCustomizationsViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Customize/ViewModels/TaskbarCustomizationsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Customize/ViewModels/TaskbarCustomizationsViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Customize/ViewModels/WindowsThemeCustomizationsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Customize/ViewModels/WindowsThemeCustomizationsViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Customize/Views/CustomizeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Customize/Views/CustomizeView.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Customize/Views/CustomizeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Customize/Views/CustomizeView.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Customize/Views/ExplorerCustomizationsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Customize/Views/ExplorerCustomizationsView.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Customize/Views/ExplorerCustomizationsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Customize/Views/ExplorerCustomizationsView.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Customize/Views/StartMenuCustomizationsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Customize/Views/StartMenuCustomizationsView.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Customize/Views/StartMenuCustomizationsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Customize/Views/StartMenuCustomizationsView.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Customize/Views/TaskbarCustomizationsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Customize/Views/TaskbarCustomizationsView.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Customize/Views/TaskbarCustomizationsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Customize/Views/TaskbarCustomizationsView.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Customize/Views/WindowsThemeCustomizationsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Customize/Views/WindowsThemeCustomizationsView.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Customize/Views/WindowsThemeCustomizationsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Customize/Views/WindowsThemeCustomizationsView.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/ViewModels/ExplorerOptimizationsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/ViewModels/ExplorerOptimizationsViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/ViewModels/GamingandPerformanceOptimizationsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/ViewModels/GamingandPerformanceOptimizationsViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/ViewModels/NotificationOptimizationsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/ViewModels/NotificationOptimizationsViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/ViewModels/OptimizeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/ViewModels/OptimizeViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/ViewModels/PowerOptimizationsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/ViewModels/PowerOptimizationsViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/ViewModels/PrivacyOptimizationsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/ViewModels/PrivacyOptimizationsViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/ViewModels/SoundOptimizationsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/ViewModels/SoundOptimizationsViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/ViewModels/UpdateOptimizationsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/ViewModels/UpdateOptimizationsViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/ViewModels/WindowsSecurityOptimizationsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/ViewModels/WindowsSecurityOptimizationsViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/Views/ExplorerOptimizationsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/Views/ExplorerOptimizationsView.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/Views/ExplorerOptimizationsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/Views/ExplorerOptimizationsView.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/Views/GamingandPerformanceOptimizationsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/Views/GamingandPerformanceOptimizationsView.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/Views/GamingandPerformanceOptimizationsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/Views/GamingandPerformanceOptimizationsView.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/Views/NotificationOptimizationsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/Views/NotificationOptimizationsView.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/Views/NotificationOptimizationsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/Views/NotificationOptimizationsView.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/Views/OptimizeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/Views/OptimizeView.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/Views/OptimizeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/Views/OptimizeView.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/Views/PowerOptimizationsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/Views/PowerOptimizationsView.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/Views/PowerOptimizationsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/Views/PowerOptimizationsView.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/Views/PrivacyOptimizationsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/Views/PrivacyOptimizationsView.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/Views/PrivacyOptimizationsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/Views/PrivacyOptimizationsView.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/Views/SoundOptimizationsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/Views/SoundOptimizationsView.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/Views/SoundOptimizationsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/Views/SoundOptimizationsView.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/Views/UpdateOptimizationsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/Views/UpdateOptimizationsView.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/Views/UpdateOptimizationsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/Views/UpdateOptimizationsView.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/Views/WindowsSecurityOptimizationsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/Views/WindowsSecurityOptimizationsView.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/Optimize/Views/WindowsSecurityOptimizationsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/Optimize/Views/WindowsSecurityOptimizationsView.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/SoftwareApps/Models/ExternalApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/SoftwareApps/Models/ExternalApp.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/SoftwareApps/Models/ExternalAppSettingItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/SoftwareApps/Models/ExternalAppSettingItem.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/SoftwareApps/Models/ThirdPartyApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/SoftwareApps/Models/ThirdPartyApp.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/SoftwareApps/Models/WindowsApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/SoftwareApps/Models/WindowsApp.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/SoftwareApps/Models/WindowsAppSettingItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/SoftwareApps/Models/WindowsAppSettingItem.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/SoftwareApps/Services/SoftwareAppsDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/SoftwareApps/Services/SoftwareAppsDialogService.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/SoftwareApps/ViewModels/AppListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/SoftwareApps/ViewModels/AppListViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/SoftwareApps/ViewModels/BaseInstallationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/SoftwareApps/ViewModels/BaseInstallationViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/SoftwareApps/ViewModels/CapabilitiesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/SoftwareApps/ViewModels/CapabilitiesViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/SoftwareApps/ViewModels/ExternalAppsCategoryViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/SoftwareApps/ViewModels/ExternalAppsCategoryViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/SoftwareApps/ViewModels/ExternalAppsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/SoftwareApps/ViewModels/ExternalAppsViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/SoftwareApps/ViewModels/SoftwareAppsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/SoftwareApps/ViewModels/SoftwareAppsViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/SoftwareApps/ViewModels/WindowsAppsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/SoftwareApps/ViewModels/WindowsAppsViewModel.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/SoftwareApps/Views/ExternalAppsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/SoftwareApps/Views/ExternalAppsView.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/SoftwareApps/Views/ExternalAppsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/SoftwareApps/Views/ExternalAppsView.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/SoftwareApps/Views/SoftwareAppsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/SoftwareApps/Views/SoftwareAppsDialog.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/SoftwareApps/Views/SoftwareAppsDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/SoftwareApps/Views/SoftwareAppsDialog.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/SoftwareApps/Views/SoftwareAppsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/SoftwareApps/Views/SoftwareAppsView.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/SoftwareApps/Views/SoftwareAppsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/SoftwareApps/Views/SoftwareAppsView.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/SoftwareApps/Views/WindowsAppsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/SoftwareApps/Views/WindowsAppsView.xaml -------------------------------------------------------------------------------- /src/Winhance.WPF/Features/SoftwareApps/Views/WindowsAppsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Features/SoftwareApps/Views/WindowsAppsView.xaml.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /src/Winhance.WPF/Properties/PublishProfiles/FolderProfile.pubxml.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Properties/PublishProfiles/FolderProfile.pubxml.user -------------------------------------------------------------------------------- /src/Winhance.WPF/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Winhance.WPF/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Winhance.WPF/Resources/AppIcons/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Resources/AppIcons/LICENSE.txt -------------------------------------------------------------------------------- /src/Winhance.WPF/Resources/AppIcons/winhance-rocket-black-transparent-bg.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Resources/AppIcons/winhance-rocket-black-transparent-bg.ico -------------------------------------------------------------------------------- /src/Winhance.WPF/Resources/AppIcons/winhance-rocket-white-transparent-bg.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Resources/AppIcons/winhance-rocket-white-transparent-bg.ico -------------------------------------------------------------------------------- /src/Winhance.WPF/Resources/AppIcons/winhance-rocket.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Resources/AppIcons/winhance-rocket.ico -------------------------------------------------------------------------------- /src/Winhance.WPF/Resources/Fonts/MaterialSymbolsOutlined.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Resources/Fonts/MaterialSymbolsOutlined.ttf -------------------------------------------------------------------------------- /src/Winhance.WPF/Winhance.WPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLST-Qemu/Winhance-zh_CN/HEAD/src/Winhance.WPF/Winhance.WPF.csproj --------------------------------------------------------------------------------