在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → RX文件管理器源码下载(UWP)

RX文件管理器源码下载(UWP)

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:102.97M
  • 下载次数:0
  • 浏览次数:13
  • 发布时间:2024-03-24
  • 实例类别:一般编程问题
  • 发 布 人:chenxiaolan
  • 文件格式:.zip
  • 所需积分:2
 相关标签:

实例介绍

【实例简介】
RX文件管理器是一款专为UWP平台设计的文件管理应用,其界面广泛应用了亚克力效果,提供了多种个性化背景选项,包括Acrylic背景、必应每日图片、Mica背景以及自定义图片背景,旨在为用户带来既美观又实用的文件浏览体验。
该应用支持基础的文件查看、压缩与解压(支持Zip、Tar、Gz格式)、通过蓝牙或WIFI共享文件、多标签页和多进程操作、以及替代Windows Explorer的有限功能。此外,还支持访问网络驱动器、USB设备和MTP设备,提供基础的音视频文件转码功能、图片编辑裁剪和滤镜功能。RX文件管理器还引入了“垂直拆分窗口”功能,允许用户在单个标签页内同时操作多个文件夹,以及支持Quicklook预览和Everything搜索功能,增加了保管并加密文件的“安全域”功能,为用户的数据安全提供了额外保障。
无论您是寻求一个高度个性化且功能全面的文件管理器,还是对UWP应用开发感兴趣,RX文件管理器都是一个值得探索的选择。

【实例截图】

from clipboard

【核心代码】
文件清单
└── RX-Explorer-982c737933b2ab584c5b9145100e8e387e638ee8
    ├── AnimationEffectProvider
    │   ├── AnimationEffectProvider.csproj
    │   ├── EntranceAnimationEffect.cs
    │   └── Properties
    │       ├── AnimationEffectProvider.rd.xml
    │       └── AssemblyInfo.cs
    ├── AuxiliaryTrustProcess
    │   ├── AuxiliaryTrustProcess.csproj
    │   ├── Class
    │   │   ├── BackendResponseBaseData.cs
    │   │   ├── BackendResponseBaseGenericData.cs
    │   │   ├── BackendUtil.cs
    │   │   ├── CommandLineOptions.cs
    │   │   ├── ContextMenu.cs
    │   │   ├── ElevationCopyData.cs
    │   │   ├── ElevationCreateNewData.cs
    │   │   ├── ElevationDeleteData.cs
    │   │   ├── ElevationMoveData.cs
    │   │   ├── ElevationRemoteCopyData.cs
    │   │   ├── ElevationRenameData.cs
    │   │   ├── ElevationSetDriveCompressStatusData.cs
    │   │   ├── ElevationSetDriveIndexStatusData.cs
    │   │   ├── ElevationSetDriveLabelData.cs
    │   │   ├── Enum.cs
    │   │   ├── EverythingConnector.cs
    │   │   ├── ExtensionAssociation.cs
    │   │   ├── Extension.cs
    │   │   ├── Helper.cs
    │   │   ├── JsonSourceGenerationContext.cs
    │   │   ├── LogTracer.cs
    │   │   ├── MTPDeviceManager.cs
    │   │   ├── MTPPathAnalysis.cs
    │   │   ├── NamedPipeCommunicationBaseController.cs
    │   │   ├── NamedPipeControllerBase.cs
    │   │   ├── NamedPipeDataReceivedArgs.cs
    │   │   ├── NamedPipeReadController.cs
    │   │   ├── NamedPipeWriteController.cs
    │   │   ├── NativeWin32Struct.cs
    │   │   ├── QuicklookServiceProvider.cs
    │   │   ├── ReadonlyProgressReportStream.cs
    │   │   ├── RecycleBinController.cs
    │   │   ├── RemoteClipboardData.cs
    │   │   ├── RemoteClipboardFileData.cs
    │   │   ├── RemoteClipboardFolderData.cs
    │   │   ├── RemoteDataObject.cs
    │   │   ├── RetrieveAADTokenContentResponseDto.cs
    │   │   ├── SeerServiceProvider.cs
    │   │   ├── StorageItemController.cs
    │   │   └── WindowInformation.cs
    │   ├── Everything64.dll
    │   ├── Interface
    │   │   ├── IElevationData.cs
    │   │   └── IPreviewServiceProvider.cs
    │   ├── Program.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   └── Ssl
    │       ├── RX-Explorer Certificate Authority Root.cer
    │       └── RX-Explorer Client Certificate.pfx
    ├── azure-pipelines.yml
    ├── ComputerVision
    │   ├── ComputerVision.cs
    │   ├── ComputerVision.csproj
    │   ├── IUnknownInterface.cs
    │   └── Properties
    │       ├── AssemblyInfo.cs
    │       └── ComputerVision.rd.xml
    ├── LICENSE
    ├── MaintenanceTask
    │   ├── Extension.cs
    │   ├── MaintenanceTask.cs
    │   ├── MaintenanceTask.csproj
    │   └── Properties
    │       └── AssemblyInfo.cs
    ├── MonitorTrustProcess
    │   ├── Class
    │   │   ├── Enum.cs
    │   │   ├── Extension.cs
    │   │   ├── Helper.cs
    │   │   ├── JsonSourceGenerationContext.cs
    │   │   ├── LogTracer.cs
    │   │   ├── NamedPipeControllerBase.cs
    │   │   ├── NamedPipeDataReceivedArgs.cs
    │   │   ├── NamedPipeMonitorCommunicationBaseController.cs
    │   │   ├── NamedPipeReadController.cs
    │   │   ├── NamedPipeWriteController.cs
    │   │   └── WindowInformation.cs
    │   ├── MonitorTrustProcess.csproj
    │   └── Program.cs
    ├── OpenDirectoryExt
    │   ├── Class.cpp
    │   ├── Class.h
    │   ├── Class.idl
    │   ├── dllmain.cpp
    │   ├── OpenDirectoryExt.def
    │   ├── OpenDirectoryExtension.cpp
    │   ├── OpenDirectoryExtension.h
    │   ├── OpenDirectoryExt.vcxproj
    │   ├── OpenDirectoryExt.vcxproj.filters
    │   ├── packages.config
    │   ├── pch.cpp
    │   ├── pch.h
    │   └── PropertySheet.props
    ├── Package
    │   ├── Images
    │   │   ├── LargeTile.scale-100.png
    │   │   ├── LargeTile.scale-125.png
    │   │   ├── LargeTile.scale-150.png
    │   │   ├── LargeTile.scale-200.png
    │   │   ├── LargeTile.scale-400.png
    │   │   ├── LockScreenLogo.scale-200.png
    │   │   ├── SmallTile.scale-100.png
    │   │   ├── SmallTile.scale-125.png
    │   │   ├── SmallTile.scale-150.png
    │   │   ├── SmallTile.scale-200.png
    │   │   ├── SmallTile.scale-400.png
    │   │   ├── SplashScreen.scale-100.png
    │   │   ├── SplashScreen.scale-125.png
    │   │   ├── SplashScreen.scale-150.png
    │   │   ├── SplashScreen.scale-200.png
    │   │   ├── SplashScreen.scale-400.png
    │   │   ├── Square150x150Logo.scale-100.png
    │   │   ├── Square150x150Logo.scale-125.png
    │   │   ├── Square150x150Logo.scale-150.png
    │   │   ├── Square150x150Logo.scale-200.png
    │   │   ├── Square150x150Logo.scale-400.png
    │   │   ├── Square44x44Logo.altform-lightunplated_targetsize-16.png
    │   │   ├── Square44x44Logo.altform-lightunplated_targetsize-24.png
    │   │   ├── Square44x44Logo.altform-lightunplated_targetsize-256.png
    │   │   ├── Square44x44Logo.altform-lightunplated_targetsize-32.png
    │   │   ├── Square44x44Logo.altform-lightunplated_targetsize-48.png
    │   │   ├── Square44x44Logo.altform-unplated_targetsize-16.png
    │   │   ├── Square44x44Logo.altform-unplated_targetsize-256.png
    │   │   ├── Square44x44Logo.altform-unplated_targetsize-32.png
    │   │   ├── Square44x44Logo.altform-unplated_targetsize-48.png
    │   │   ├── Square44x44Logo.scale-100.png
    │   │   ├── Square44x44Logo.scale-125.png
    │   │   ├── Square44x44Logo.scale-150.png
    │   │   ├── Square44x44Logo.scale-200.png
    │   │   ├── Square44x44Logo.scale-400.png
    │   │   ├── Square44x44Logo.targetsize-16.png
    │   │   ├── Square44x44Logo.targetsize-24_altform-unplated.png
    │   │   ├── Square44x44Logo.targetsize-24.png
    │   │   ├── Square44x44Logo.targetsize-256.png
    │   │   ├── Square44x44Logo.targetsize-32.png
    │   │   ├── Square44x44Logo.targetsize-48.png
    │   │   ├── StoreLogo.backup.png
    │   │   ├── StoreLogo.scale-100.png
    │   │   ├── StoreLogo.scale-125.png
    │   │   ├── StoreLogo.scale-150.png
    │   │   ├── StoreLogo.scale-200.png
    │   │   ├── StoreLogo.scale-400.png
    │   │   ├── Wide310x150Logo.scale-100.png
    │   │   ├── Wide310x150Logo.scale-125.png
    │   │   ├── Wide310x150Logo.scale-150.png
    │   │   ├── Wide310x150Logo.scale-200.png
    │   │   └── Wide310x150Logo.scale-400.png
    │   ├── Package.appxmanifest
    │   └── Package.wapproj
    ├── README.md
    ├── RX_Explorer
    │   ├── App.xaml
    │   ├── App.xaml.cs
    │   ├── Assets
    │   │   ├── AddImage_Dark.png
    │   │   ├── AddImage_Light.png
    │   │   ├── AppLogo.png
    │   │   ├── AQSGuide_cn_s.txt
    │   │   ├── AQSGuide_cn_t.txt
    │   │   ├── AQSGuide_de.txt
    │   │   ├── AQSGuide_en.txt
    │   │   ├── AQSGuide_es.txt
    │   │   ├── AQSGuide_fr.txt
    │   │   ├── BmpFileIcon.png
    │   │   ├── ColorPickerHero.png
    │   │   ├── DesktopIcon.ico
    │   │   ├── DocumentIcon.ico
    │   │   ├── ExcelFileIcon.png
    │   │   ├── Favourite.png
    │   │   ├── FolderIcon_Win10.png
    │   │   ├── FolderIcon_Win11.png
    │   │   ├── Github-Intro1.png
    │   │   ├── Github-Intro2.png
    │   │   ├── Github-Intro3.png
    │   │   ├── Github-Intro4.png
    │   │   ├── Github-Intro5.png
    │   │   ├── Github-Intro6.png
    │   │   ├── Github-Intro7.png
    │   │   ├── Github-Intro8.png
    │   │   ├── IntroFile-Chinese_S.txt
    │   │   ├── IntroFile-Chinese_T.txt
    │   │   ├── IntroFile-English.txt
    │   │   ├── IntroFile-French.txt
    │   │   ├── IntroFile-German.txt
    │   │   ├── IntroFile-Spanish.txt
    │   │   ├── KeyboardShortcut_cn_s.txt
    │   │   ├── KeyboardShortcut_cn_t.txt
    │   │   ├── KeyboardShortcut_de.txt
    │   │   ├── KeyboardShortcut_en.txt
    │   │   ├── KeyboardShortcut_es.txt
    │   │   ├── KeyboardShortcut_fr.txt
    │   │   ├── LargeTile.scale-100.png
    │   │   ├── LargeTile.scale-125.png
    │   │   ├── LargeTile.scale-150.png
    │   │   ├── LargeTile.scale-200.png
    │   │   ├── LargeTile.scale-400.png
    │   │   ├── lnkFileIcon.png
    │   │   ├── LockFile.png
    │   │   ├── Lock.png
    │   │   ├── LockScreenLogo.scale-200.png
    │   │   ├── MultiItems_Black.png
    │   │   ├── MultiItems_White.png
    │   │   ├── NetworkDrive.ico
    │   │   ├── NormalDrive.ico
    │   │   ├── NormalDriveLocked.ico
    │   │   ├── NormalDriveUnLocked.ico
    │   │   ├── PowerPointFileIcon.png
    │   │   ├── Restore_Folder.reg
    │   │   ├── Restore_WIN_E.reg
    │   │   ├── RtfFileIcon.png
    │   │   ├── SAIntro_cn_s.png
    │   │   ├── SAIntro_cn_t.png
    │   │   ├── SAIntro_de.png
    │   │   ├── SAIntro_en.png
    │   │   ├── SAIntro_es.png
    │   │   ├── SAIntro_fr.png
    │   │   ├── SingleItem_Black.png
    │   │   ├── SingleItem_White.png
    │   │   ├── SmallTile.scale-100.png
    │   │   ├── SmallTile.scale-125.png
    │   │   ├── SmallTile.scale-150.png
    │   │   ├── SmallTile.scale-200.png
    │   │   ├── SmallTile.scale-400.png
    │   │   ├── SplashScreen.scale-100.png
    │   │   ├── SplashScreen.scale-125.png
    │   │   ├── SplashScreen.scale-150.png
    │   │   ├── SplashScreen.scale-200.png
    │   │   ├── SplashScreen.scale-400.png
    │   │   ├── Square150x150Logo.scale-100.png
    │   │   ├── Square150x150Logo.scale-125.png
    │   │   ├── Square150x150Logo.scale-150.png
    │   │   ├── Square150x150Logo.scale-200.png
    │   │   ├── Square150x150Logo.scale-400.png
    │   │   ├── Square44x44Logo.altform-lightunplated_targetsize-16.png
    │   │   ├── Square44x44Logo.altform-lightunplated_targetsize-24.png
    │   │   ├── Square44x44Logo.altform-lightunplated_targetsize-256.png
    │   │   ├── Square44x44Logo.altform-lightunplated_targetsize-32.png
    │   │   ├── Square44x44Logo.altform-lightunplated_targetsize-48.png
    │   │   ├── Square44x44Logo.altform-unplated_targetsize-16.png
    │   │   ├── Square44x44Logo.altform-unplated_targetsize-256.png
    │   │   ├── Square44x44Logo.altform-unplated_targetsize-32.png
    │   │   ├── Square44x44Logo.altform-unplated_targetsize-48.png
    │   │   ├── Square44x44Logo.scale-100.png
    │   │   ├── Square44x44Logo.scale-125.png
    │   │   ├── Square44x44Logo.scale-150.png
    │   │   ├── Square44x44Logo.scale-200.png
    │   │   ├── Square44x44Logo.scale-400.png
    │   │   ├── Square44x44Logo.targetsize-16.png
    │   │   ├── Square44x44Logo.targetsize-24_altform-unplated.png
    │   │   ├── Square44x44Logo.targetsize-24.png
    │   │   ├── Square44x44Logo.targetsize-256.png
    │   │   ├── Square44x44Logo.targetsize-32.png
    │   │   ├── Square44x44Logo.targetsize-48.png
    │   │   ├── StoreLogo.scale-100.png
    │   │   ├── StoreLogo.scale-125.png
    │   │   ├── StoreLogo.scale-150.png
    │   │   ├── StoreLogo.scale-200.png
    │   │   ├── StoreLogo.scale-400.png
    │   │   ├── SystemDrive.ico
    │   │   ├── SystemDriveUnLocked.ico
    │   │   ├── ThisPC.png
    │   │   ├── TxtFileIcon.png
    │   │   ├── UpdateLog-Chinese_S.txt
    │   │   ├── UpdateLog-Chinese_T.txt
    │   │   ├── UpdateLog-English.txt
    │   │   ├── UpdateLog-French.txt
    │   │   ├── UpdateLog-German.txt
    │   │   ├── UpdateLog-Spanish.txt
    │   │   ├── VerticalSplitHero.png
    │   │   ├── Wide310x150Logo.scale-100.png
    │   │   ├── Wide310x150Logo.scale-125.png
    │   │   ├── Wide310x150Logo.scale-150.png
    │   │   ├── Wide310x150Logo.scale-200.png
    │   │   ├── Wide310x150Logo.scale-400.png
    │   │   ├── WordFileIcon.png
    │   │   └── ZipFileIcon.png
    │   ├── Class
    │   │   ├── AddressBlock.cs
    │   │   ├── AddressSuggestionItem.cs
    │   │   ├── AnimationController.cs
    │   │   ├── AppInstanceIdContainer.cs
    │   │   ├── AppThemeController.cs
    │   │   ├── AuxiliaryTrustProcessController.cs
    │   │   ├── BackgroundController.cs
    │   │   ├── BackgroundPicture.cs
    │   │   ├── BingPictureDownloader.cs
    │   │   ├── BluetoothAudioDeviceData.cs
    │   │   ├── BluetoothDeivceData.cs
    │   │   ├── CommonAccessCollection.cs
    │   │   ├── CompressionFile.cs
    │   │   ├── CompressionFolder.cs
    │   │   ├── CompressionItemBase.cs
    │   │   ├── CompressionUtil.cs
    │   │   ├── ContextMenuItem.cs
    │   │   ├── CredentialProtector.cs
    │   │   ├── CustomDataTemplateSelector.cs
    │   │   ├── CustomStaticDataSource.cs
    │   │   ├── CustomStyleSelector.cs
    │   │   ├── DisposableObservableCollection.cs
    │   │   ├── DisposeNotification.cs
    │   │   ├── DriveChangedDeferredEventArgs.cs
    │   │   ├── DriveDataBase.cs
    │   │   ├── Enum.cs
    │   │   ├── EnvironmentVariables.cs
    │   │   ├── Exception.cs
    │   │   ├── Execution.cs
    │   │   ├── ExtendedDataFormats.cs
    │   │   ├── ExtendedExecutionController.cs
    │   │   ├── Extension.cs
    │   │   ├── FileAddedDeferredEventArgs.cs
    │   │   ├── FileChangedDeferredEventArgs.cs
    │   │   ├── FileChangeMonitor.cs
    │   │   ├── FileModifiedDeferredEventArgs.cs
    │   │   ├── FileRemovedDeferredEventArgs.cs
    │   │   ├── FileRenamedDeferredEventArgs.cs
    │   │   ├── FileSystemItemNameChecker.cs
    │   │   ├── FileSystemStorageFile.cs
    │   │   ├── FileSystemStorageFolder.cs
    │   │   ├── FileSystemStorageGroupItem.cs
    │   │   ├── FileSystemStorageItemBase.cs
    │   │   ├── FilterController.cs
    │   │   ├── FontFamilyController.cs
    │   │   ├── FTPClientController.cs
    │   │   ├── FTPClientManager.cs
    │   │   ├── FTPFileData.cs
    │   │   ├── FTPFileSaveOnFlushStream.cs
    │   │   ├── FTPPathAnalysis.cs
    │   │   ├── FtpSafeReadStream.cs
    │   │   ├── FtpSafeWriteStream.cs
    │   │   ├── FTPStorageFile.cs
    │   │   ├── FTPStorageFolder.cs
    │   │   ├── GeneralTransformer.cs
    │   │   ├── Globalization.cs
    │   │   ├── GroupCollectionGenerator.cs
    │   │   ├── GroupItemBase.cs
    │   │   ├── GroupStateChangedEventArgs.cs
    │   │   ├── Helper.cs
    │   │   ├── ImageFilterItem.cs
    │   │   ├── InfoTipController.cs
    │   │   ├── InstalledApplication.cs
    │   │   ├── InstalledFonts.cs
    │   │   ├── InterlockedNoReentryExecution.cs
    │   │   ├── JumpListController.cs
    │   │   ├── KeyGenerator.cs
    │   │   ├── LabelCollectionVirtualFolder.cs
    │   │   ├── LaunchArguementOptions.cs
    │   │   ├── LayoutModeChangedEventArgs.cs
    │   │   ├── LayoutModeController.cs
    │   │   ├── LayoutModeModel.cs
    │   │   ├── LibraryChangedDeferredEventArgs.cs
    │   │   ├── LibraryFolderRecord.cs
    │   │   ├── LibraryStorageFolder.cs
    │   │   ├── LinkStorageFile.cs
    │   │   ├── ListViewBaseSelectionExtension.cs
    │   │   ├── ListViewColumnWidthSaver.cs
    │   │   ├── LockedDriveData.cs
    │   │   ├── LogTracer.cs
    │   │   ├── MonitorTrustProcessController.cs
    │   │   ├── MSStoreHelper.cs
    │   │   ├── MTPDriveData.cs
    │   │   ├── MTPFileSaveOnFlushStream.cs
    │   │   ├── MTPStorageFile.cs
    │   │   ├── MTPStorageFolder.cs
    │   │   ├── NamedPipeCommunicationBaseController.cs
    │   │   ├── NamedPipeControllerBase.cs
    │   │   ├── NamedPipeDataReceivedArgs.cs
    │   │   ├── NamedPipeMonitorCommunicationBaseController.cs
    │   │   ├── NamedPipeReadController.cs
    │   │   ├── NamedPipeWriteController.cs
    │   │   ├── NativeFileData.cs
    │   │   ├── NativeWin32API.cs
    │   │   ├── NavigationRecordDisplay.cs
    │   │   ├── NavigationRelatedRecord.cs
    │   │   ├── NormalDriveData.cs
    │   │   ├── OperationListBaseModel.cs
    │   │   ├── OperationListCompressionModel.cs
    │   │   ├── OperationListCopyModel.cs
    │   │   ├── OperationListCopyUndoModel.cs
    │   │   ├── OperationListDecompressionModel.cs
    │   │   ├── OperationListDeleteModel.cs
    │   │   ├── OperationListDeleteUndoModel.cs
    │   │   ├── OperationListMoveModel.cs
    │   │   ├── OperationListMoveUndoModel.cs
    │   │   ├── OperationListNewUndoModel.cs
    │   │   ├── OperationListRemoteModel.cs
    │   │   ├── OperationListRenameModel.cs
    │   │   ├── OperationListRenameUndoModel.cs
    │   │   ├── OperationListUndoModel.cs
    │   │   ├── OperationRecorder.cs
    │   │   ├── PathAnalysis.cs
    │   │   ├── PathConfiguration.cs
    │   │   ├── PhotoDisplayItem.cs
    │   │   ├── PixelNumberFormatter.cs
    │   │   ├── PortableImageDataPackage.cs
    │   │   ├── PostProcessingDeferredEventArgs.cs
    │   │   ├── ProcessWaitHandle.cs
    │   │   ├── ProgramPickerItem.cs
    │   │   ├── ProgressCalculator.cs
    │   │   ├── ProgressChangedDeferredArgs.cs
    │   │   ├── PropertiesGroupItem.cs
    │   │   ├── QueueContentDialog.cs
    │   │   ├── QueueTaskController.cs
    │   │   ├── QuickStartItem.cs
    │   │   ├── RecycleStorageFile.cs
    │   │   ├── RecycleStorageFolder.cs
    │   │   ├── RefreshRequestedEventArgs.cs
    │   │   ├── RefSharedRegion.cs
    │   │   ├── RootVirtualFolder.cs
    │   │   ├── SearchOptions.cs
    │   │   ├── SearchSuggestionItem.cs
    │   │   ├── SecureAreaFileModel.cs
    │   │   ├── SecurityAccount.cs
    │   │   ├── SecurityAccountPermissions.cs
    │   │   ├── SequentialVirtualRandomAccessStream.cs
    │   │   ├── SignalContext.cs
    │   │   ├── SLEHeader.cs
    │   │   ├── SLEInputStream.cs
    │   │   ├── SLEOutputStream.cs
    │   │   ├── SortedCollectionGenerator.cs
    │   │   ├── SortIndicatorController.cs
    │   │   ├── SortStateChangedEventArgs.cs
    │   │   ├── SpecialPath.cs
    │   │   ├── SpecialTypeGenerator.cs
    │   │   ├── SQLite.cs
    │   │   ├── StartupModeController.cs
    │   │   ├── TaskBarController.cs
    │   │   ├── TerminalProfile.cs
    │   │   ├── TextEncodingModel.cs
    │   │   ├── TextLineData.cs
    │   │   ├── TreeViewColumnWidthSaver.cs
    │   │   ├── TreeViewNodeContent.cs
    │   │   ├── UncPath.cs
    │   │   ├── UrlStorageFile.cs
    │   │   ├── ValueConverter.cs
    │   │   ├── ViewHeightOffsetWapper.cs
    │   │   ├── VirtualSaveOnFlushBaseStream.cs
    │   │   ├── WiFiShareProvider.cs
    │   │   ├── WindowsHelloAuthenticator.cs
    │   │   ├── WindowSizeConfiguration.cs
    │   │   ├── WindowsVersionChecker.cs
    │   │   └── WslDriveData.cs
    │   ├── CustomControl
    │   │   ├── HightLightTextBlock.xaml
    │   │   └── HightLightTextBlock.xaml.cs
    │   ├── CustomImage
    │   │   ├── Picture10.jpg
    │   │   ├── Picture11.jpg
    │   │   ├── Picture12.jpg
    │   │   ├── Picture13.jpg
    │   │   ├── Picture14.jpg
    │   │   ├── Picture15.jpg
    │   │   ├── Picture1.jpg
    │   │   ├── Picture2.jpg
    │   │   ├── Picture3.jpg
    │   │   ├── Picture4.jpg
    │   │   ├── Picture5.jpg
    │   │   ├── Picture6.jpg
    │   │   ├── Picture7.jpg
    │   │   ├── Picture8.jpg
    │   │   └── Picture9.jpg
    │   ├── Dialog
    │   │   ├── AQSGuide.xaml
    │   │   ├── AQSGuide.xaml.cs
    │   │   ├── BitlockerPasswordDialog.xaml
    │   │   ├── BitlockerPasswordDialog.xaml.cs
    │   │   ├── BluetoothUI.xaml
    │   │   ├── BluetoothUI.xaml.cs
    │   │   ├── CommonContentDialog.xaml
    │   │   ├── CommonContentDialog.xaml.cs
    │   │   ├── CompressDialog.xaml
    │   │   ├── CompressDialog.xaml.cs
    │   │   ├── DecompressDialog.xaml
    │   │   ├── DecompressDialog.xaml.cs
    │   │   ├── EditNavigationViewItemDialog.xaml
    │   │   ├── EditNavigationViewItemDialog.xaml.cs
    │   │   ├── FTPCredentialDialog.xaml
    │   │   ├── FTPCredentialDialog.xaml.cs
    │   │   ├── GetWinAppSdkDialog.xaml
    │   │   ├── GetWinAppSdkDialog.xaml.cs
    │   │   ├── KeyboardShortcutGuideDialog.xaml
    │   │   ├── KeyboardShortcutGuideDialog.xaml.cs
    │   │   ├── LinkOptionsDialog.xaml
    │   │   ├── LinkOptionsDialog.xaml.cs
    │   │   ├── ModifySystemWarningDialog.xaml
    │   │   ├── ModifySystemWarningDialog.xaml.cs
    │   │   ├── NewCompressionItemPickerDialog.xaml
    │   │   ├── NewCompressionItemPickerDialog.xaml.cs
    │   │   ├── PdfPasswordDialog.xaml
    │   │   ├── PdfPasswordDialog.xaml.cs
    │   │   ├── ProgramPickerDialog.xaml
    │   │   ├── ProgramPickerDialog.xaml.cs
    │   │   ├── QuickStartModifiedDialog.xaml
    │   │   ├── QuickStartModifiedDialog.xaml.cs
    │   │   ├── RenameDialog.xaml
    │   │   ├── RenameDialog.xaml.cs
    │   │   ├── ResetDialog.xaml
    │   │   ├── ResetDialog.xaml.cs
    │   │   ├── SecureAreaChangeLocationDialog.xaml
    │   │   ├── SecureAreaChangeLocationDialog.xaml.cs
    │   │   ├── SecureAreaIntroDialog.xaml
    │   │   ├── SecureAreaIntroDialog.xaml.cs
    │   │   ├── SecureAreaVerifyDialog.xaml
    │   │   ├── SecureAreaVerifyDialog.xaml.cs
    │   │   ├── SecureAreaWelcomeDialog.xaml
    │   │   ├── SecureAreaWelcomeDialog.xaml.cs
    │   │   ├── SecureFilePropertyDialog.xaml
    │   │   ├── SecureFilePropertyDialog.xaml.cs
    │   │   ├── SystemInfoDialog.xaml
    │   │   ├── SystemInfoDialog.xaml.cs
    │   │   ├── TextEncodingDialog.xaml
    │   │   ├── TextEncodingDialog.xaml.cs
    │   │   ├── TranscodeDialog.xaml
    │   │   ├── TranscodeDialog.xaml.cs
    │   │   ├── TranscodeImageDialog.xaml
    │   │   ├── TranscodeImageDialog.xaml.cs
    │   │   ├── VideoEditDialog.xaml
    │   │   ├── VideoEditDialog.xaml.cs
    │   │   ├── VideoMergeDialog.xaml
    │   │   ├── VideoMergeDialog.xaml.cs
    │   │   ├── WhatIsNew.xaml
    │   │   └── WhatIsNew.xaml.cs
    │   ├── FodyWeavers.xml
    │   ├── FodyWeavers.xsd
    │   ├── GlobalDictionary.xaml
    │   ├── HotWebImage
    │   │   ├── Facebook.png
    │   │   ├── Instagram.png
    │   │   └── Twitter.png
    │   ├── Interface
    │   │   ├── ICompressionItem.cs
    │   │   ├── IDriveData.cs
    │   │   ├── IFTPStorageItem.cs
    │   │   ├── IIndirectLaunchStorageItem.cs
    │   │   ├── ILinkStorageFile.cs
    │   │   ├── IMTPStorageItem.cs
    │   │   ├── INotWin32StorageFile.cs
    │   │   ├── INotWin32StorageFolder.cs
    │   │   ├── INotWin32StorageItem.cs
    │   │   ├── IRecycleStorageItem.cs
    │   │   ├── IStorageItemBaseProperties.cs
    │   │   ├── IStorageItemOperation.cs
    │   │   ├── IUknownInterface.cs
    │   │   ├── IUnsupportedStorageItem.cs
    │   │   └── IUrlStorageFile.cs
    │   ├── MultilingualResources
    │   │   ├── RX_Explorer.de-DE.xlf
    │   │   ├── RX_Explorer.es.xlf
    │   │   ├── RX_Explorer.fr-FR.xlf
    │   │   ├── RX_Explorer.zh-Hans.xlf
    │   │   └── RX_Explorer.zh-Hant.xlf
    │   ├── Package.appxmanifest
    │   ├── Program.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   └── Default.rd.xml
    │   ├── QuickStartImage
    │   │   ├── Calculator.png
    │   │   ├── Calendar.png
    │   │   ├── Email.png
    │   │   ├── MicrosoftStore.png
    │   │   ├── Photos.png
    │   │   ├── Setting.png
    │   │   └── Weather.png
    │   ├── RX_Explorer.csproj
    │   ├── SeparateWindow
    │   │   ├── PropertiesWindowBase.xaml
    │   │   └── PropertiesWindowBase.xaml.cs
    │   ├── Strings
    │   │   ├── de-DE
    │   │   │   └── Resources.resw
    │   │   ├── en-US
    │   │   │   └── Resources.resw
    │   │   ├── es
    │   │   │   └── Resources.resw
    │   │   ├── fr-FR
    │   │   │   └── Resources.resw
    │   │   ├── zh-Hans
    │   │   │   └── Resources.resw
    │   │   └── zh-Hant
    │   │       └── Resources.resw
    │   └── View
    │       ├── BlueScreen.xaml
    │       ├── BlueScreen.xaml.cs
    │       ├── CompressionViewer.xaml
    │       ├── CompressionViewer.xaml.cs
    │       ├── ExtendedSplash.xaml
    │       ├── ExtendedSplash.xaml.cs
    │       ├── FileControl.xaml
    │       ├── FileControl.xaml.cs
    │       ├── FilePresenter.xaml
    │       ├── FilePresenter.xaml.cs
    │       ├── Home.xaml
    │       ├── Home.xaml.cs
    │       ├── MainPage.xaml
    │       ├── MainPage.xaml.cs
    │       ├── MediaPlayer.xaml
    │       ├── MediaPlayer.xaml.cs
    │       ├── PdfReader.xaml
    │       ├── PdfReader.xaml.cs
    │       ├── PhotoEditor.xaml
    │       ├── PhotoEditor.xaml.cs
    │       ├── PhotoViewer.xaml
    │       ├── PhotoViewer.xaml.cs
    │       ├── RecycleBin.xaml
    │       ├── RecycleBin.xaml.cs
    │       ├── SearchPage.xaml
    │       ├── SearchPage.xaml.cs
    │       ├── SecureAreaContainer.xaml
    │       ├── SecureAreaContainer.xaml.cs
    │       ├── SecureArea.xaml
    │       ├── SecureArea.xaml.cs
    │       ├── SettingPage.xaml
    │       ├── SettingPage.xaml.cs
    │       ├── TabItemContentRenderer.xaml
    │       ├── TabItemContentRenderer.xaml.cs
    │       ├── TabViewContainer.xaml
    │       ├── TabViewContainer.xaml.cs
    │       ├── TextViewer.xaml
    │       └── TextViewer.xaml.cs
    ├── RX_Explorer.sln
    ├── SharedLibrary
    │   ├── AssociationPackage.cs
    │   ├── ContextMenuPackage.cs
    │   ├── Enum.cs
    │   ├── Extention.cs
    │   ├── InstalledApplicationPackage.cs
    │   ├── LinkFileData.cs
    │   ├── MTPDriveVolumnData.cs
    │   ├── MTPFileData.cs
    │   ├── PermissionDataPackage.cs
    │   ├── RecycleBinItemDataPackage.cs
    │   ├── RedeemCodeContentResponseDto.cs
    │   ├── RemoteClipboardRelatedData.cs
    │   ├── SharedLibrary.csproj
    │   ├── StringNaturalAlgorithmData.cs
    │   ├── UrlFileData.cs
    │   └── VariableDataPackage.cs
    ├── SystemInformationProvider
    │   ├── InstructionSet.h
    │   ├── pch.cpp
    │   ├── pch.h
    │   ├── SystemInformation.cpp
    │   ├── SystemInformation.h
    │   ├── SystemInformationProvider.vcxproj
    │   └── SystemInformationProvider.vcxproj.filters
    ├── SystemLaunchHelper
    │   ├── Class
    │   │   ├── CommandLineOptions.cs
    │   │   ├── Enum.cs
    │   │   └── Helper.cs
    │   ├── Program.cs
    │   ├── RegFiles
    │   │   ├── Intercept_Folder.reg
    │   │   ├── Intercept_WIN_E.reg
    │   │   ├── RestoreAll.reg
    │   │   ├── Restore_Folder.reg
    │   │   └── Restore_WIN_E.reg
    │   └── SystemLaunchHelper.csproj
    ├── TrustProcessLauncher
    │   ├── Program.cs
    │   └── TrustProcessLauncher.csproj
    └── UpdateCheckBackgroundTask
        ├── Extension.cs
        ├── Properties
        │   └── AssemblyInfo.cs
        ├── UpdateCheckBackgroundTask.csproj
        └── UpdateCheck.cs

45 directories, 633 files

标签:

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警