├── .gitignore ├── PhotoTimeFix.sln ├── PhotoTimeFix ├── ARM64 │ └── NSudoAPI.dll ├── App.xaml ├── App.xaml.cs ├── Library │ └── M2.NSudo.dll ├── PhotoTimeFix.csproj ├── Properties │ └── launchSettings.json ├── Resource │ ├── Resource.Designer.cs │ ├── Resource.resx │ ├── Resource.zh-Hans.resx │ └── Resource.zh-Hant.resx ├── Util │ ├── DefaultFileProcessor.cs │ ├── FileExistValidationRule.cs │ ├── IFileProcessor.cs │ ├── ProcessResult.cs │ ├── ProcessResultList.cs │ ├── SettingItemAttribute.cs │ └── ThemeHelper.cs ├── ViewBinding │ ├── MainWindowBinding.cs │ └── SettingBinding.cs ├── Win32 │ └── NSudoAPI.dll ├── Window │ ├── CodeEditWindow.xaml │ ├── CodeEditWindow.xaml.cs │ ├── ImageWindow.xaml │ ├── ImageWindow.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── ProcessBarWindow.xaml │ ├── ProcessBarWindow.xaml.cs │ ├── ProcessWindow.xaml │ └── ProcessWindow.xaml.cs ├── a9ikq-xzp6j-001.ico └── app.manifest ├── README.md ├── WapProject ├── .gitignore ├── Images │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── SmallTile.scale-100.png │ ├── SmallTile.scale-200.png │ ├── SmallTile.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-48.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-200.png │ └── Wide310x150Logo.scale-400.png ├── Package.appxmanifest └── WapProject.wapproj ├── artwork ├── 2.jpg ├── English_getitfromMS.png ├── wpf-cn-1.png ├── wpf-cn-2.png ├── wpf-en-1.png ├── wpf-en-2.png └── 照片时间修复.png └── 照片时间修复.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/.gitignore -------------------------------------------------------------------------------- /PhotoTimeFix.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix.sln -------------------------------------------------------------------------------- /PhotoTimeFix/ARM64/NSudoAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/ARM64/NSudoAPI.dll -------------------------------------------------------------------------------- /PhotoTimeFix/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/App.xaml -------------------------------------------------------------------------------- /PhotoTimeFix/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/App.xaml.cs -------------------------------------------------------------------------------- /PhotoTimeFix/Library/M2.NSudo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/Library/M2.NSudo.dll -------------------------------------------------------------------------------- /PhotoTimeFix/PhotoTimeFix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/PhotoTimeFix.csproj -------------------------------------------------------------------------------- /PhotoTimeFix/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/Properties/launchSettings.json -------------------------------------------------------------------------------- /PhotoTimeFix/Resource/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/Resource/Resource.Designer.cs -------------------------------------------------------------------------------- /PhotoTimeFix/Resource/Resource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/Resource/Resource.resx -------------------------------------------------------------------------------- /PhotoTimeFix/Resource/Resource.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/Resource/Resource.zh-Hans.resx -------------------------------------------------------------------------------- /PhotoTimeFix/Resource/Resource.zh-Hant.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/Resource/Resource.zh-Hant.resx -------------------------------------------------------------------------------- /PhotoTimeFix/Util/DefaultFileProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/Util/DefaultFileProcessor.cs -------------------------------------------------------------------------------- /PhotoTimeFix/Util/FileExistValidationRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/Util/FileExistValidationRule.cs -------------------------------------------------------------------------------- /PhotoTimeFix/Util/IFileProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/Util/IFileProcessor.cs -------------------------------------------------------------------------------- /PhotoTimeFix/Util/ProcessResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/Util/ProcessResult.cs -------------------------------------------------------------------------------- /PhotoTimeFix/Util/ProcessResultList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/Util/ProcessResultList.cs -------------------------------------------------------------------------------- /PhotoTimeFix/Util/SettingItemAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/Util/SettingItemAttribute.cs -------------------------------------------------------------------------------- /PhotoTimeFix/Util/ThemeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/Util/ThemeHelper.cs -------------------------------------------------------------------------------- /PhotoTimeFix/ViewBinding/MainWindowBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/ViewBinding/MainWindowBinding.cs -------------------------------------------------------------------------------- /PhotoTimeFix/ViewBinding/SettingBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/ViewBinding/SettingBinding.cs -------------------------------------------------------------------------------- /PhotoTimeFix/Win32/NSudoAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/Win32/NSudoAPI.dll -------------------------------------------------------------------------------- /PhotoTimeFix/Window/CodeEditWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/Window/CodeEditWindow.xaml -------------------------------------------------------------------------------- /PhotoTimeFix/Window/CodeEditWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/Window/CodeEditWindow.xaml.cs -------------------------------------------------------------------------------- /PhotoTimeFix/Window/ImageWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/Window/ImageWindow.xaml -------------------------------------------------------------------------------- /PhotoTimeFix/Window/ImageWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/Window/ImageWindow.xaml.cs -------------------------------------------------------------------------------- /PhotoTimeFix/Window/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/Window/MainWindow.xaml -------------------------------------------------------------------------------- /PhotoTimeFix/Window/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/Window/MainWindow.xaml.cs -------------------------------------------------------------------------------- /PhotoTimeFix/Window/ProcessBarWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/Window/ProcessBarWindow.xaml -------------------------------------------------------------------------------- /PhotoTimeFix/Window/ProcessBarWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/Window/ProcessBarWindow.xaml.cs -------------------------------------------------------------------------------- /PhotoTimeFix/Window/ProcessWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/Window/ProcessWindow.xaml -------------------------------------------------------------------------------- /PhotoTimeFix/Window/ProcessWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/Window/ProcessWindow.xaml.cs -------------------------------------------------------------------------------- /PhotoTimeFix/a9ikq-xzp6j-001.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/a9ikq-xzp6j-001.ico -------------------------------------------------------------------------------- /PhotoTimeFix/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/PhotoTimeFix/app.manifest -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/README.md -------------------------------------------------------------------------------- /WapProject/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/.gitignore -------------------------------------------------------------------------------- /WapProject/Images/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/LargeTile.scale-100.png -------------------------------------------------------------------------------- /WapProject/Images/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/LargeTile.scale-200.png -------------------------------------------------------------------------------- /WapProject/Images/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/LargeTile.scale-400.png -------------------------------------------------------------------------------- /WapProject/Images/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/SmallTile.scale-100.png -------------------------------------------------------------------------------- /WapProject/Images/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/SmallTile.scale-200.png -------------------------------------------------------------------------------- /WapProject/Images/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/SmallTile.scale-400.png -------------------------------------------------------------------------------- /WapProject/Images/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /WapProject/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /WapProject/Images/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /WapProject/Images/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /WapProject/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /WapProject/Images/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /WapProject/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /WapProject/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /WapProject/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /WapProject/Images/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /WapProject/Images/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /WapProject/Images/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /WapProject/Images/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /WapProject/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /WapProject/Images/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /WapProject/Images/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /WapProject/Images/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /WapProject/Images/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /WapProject/Images/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /WapProject/Images/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /WapProject/Images/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /WapProject/Images/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /WapProject/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /WapProject/Images/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Images/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /WapProject/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/Package.appxmanifest -------------------------------------------------------------------------------- /WapProject/WapProject.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/WapProject/WapProject.wapproj -------------------------------------------------------------------------------- /artwork/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/artwork/2.jpg -------------------------------------------------------------------------------- /artwork/English_getitfromMS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/artwork/English_getitfromMS.png -------------------------------------------------------------------------------- /artwork/wpf-cn-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/artwork/wpf-cn-1.png -------------------------------------------------------------------------------- /artwork/wpf-cn-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/artwork/wpf-cn-2.png -------------------------------------------------------------------------------- /artwork/wpf-en-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/artwork/wpf-en-1.png -------------------------------------------------------------------------------- /artwork/wpf-en-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/artwork/wpf-en-2.png -------------------------------------------------------------------------------- /artwork/照片时间修复.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/artwork/照片时间修复.png -------------------------------------------------------------------------------- /照片时间修复.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryolitia/PhotoTimeFix/HEAD/照片时间修复.jpg --------------------------------------------------------------------------------