├── .gitattributes ├── .gitignore ├── InstallPackage ├── InstallPackageWPF.exe ├── InstallPackageWPF.exe.config └── Resources │ ├── Environmental │ ├── MusicTeachingWindow.exe │ └── tst │ │ └── MusicTeachingWindow.exe │ ├── MusicTeachingWindow.exe │ ├── UninstallPackageWPF.exe │ └── UpdateWindowProgram.exe ├── InstallPackageWPF.sln ├── InstallPackageWPF ├── App.xaml ├── App.xaml.cs ├── Converters │ └── BoolAsVisiableConverter.cs ├── FlowDocumentInfoUC.xaml ├── FlowDocumentInfoUC.xaml.cs ├── InstallPackageWPF.csproj ├── LocalInstallTesting.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── NotifyPropertyChanged.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── app.manifest ├── Resources │ ├── Environmental │ │ ├── MusicTeachingWindow.exe │ │ ├── MusicTeachingWindow.exe.config │ │ └── tst │ │ │ └── MusicTeachingWindow.exe │ ├── MusicTeachingWindow.exe │ ├── MusicTeachingWindow.exe.config │ ├── UninstallPackageWPF.exe │ └── UpdateWindowProgram.exe ├── Themes │ ├── ButtonStyle.xaml │ ├── InstallAnimation.cs │ ├── InstallAnimationUC.xaml │ ├── InstallAnimationUC.xaml.cs │ ├── PathButtonStyle.xaml │ └── ProgressStyle.xaml ├── WindowsBase │ ├── ChildWindow.cs │ └── ChildWindowStyle.xaml └── app.config ├── LICENSE ├── MusicTeachingWindow ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── MusicTeachingWindow.csproj └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Output ├── MusicTeachingWindow.exe ├── MusicTeachingWindow.exe.config ├── UninstallPackageWPF.exe ├── UninstallPackageWPF.exe.config ├── UpdateWindowProgram.exe └── UpdateWindowProgram.exe.config ├── README.md ├── UninstallPackageWPF ├── App.xaml ├── App.xaml.cs ├── Converters │ └── BoolAsVisiableConverter.cs ├── LocalUnInstallTesting.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── app.manifest ├── Themes │ ├── ButtonStyle.xaml │ ├── PathButtonStyle.xaml │ └── ProgressStyle.xaml ├── UninstallPackageWPF.csproj ├── WindowsBase │ ├── ChildWindow.cs │ └── ChildWindowStyle.xaml └── app.config └── UpdateWindowProgram ├── App.xaml ├── App.xaml.cs ├── Converters └── BoolAsVisiableConverter.cs ├── Helpers ├── ApplicationPath.cs └── HttpHelper.cs ├── LocalUpdateTesting.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Models └── VersionInfo.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs ├── Settings.settings └── app.manifest ├── Themes ├── PathButtonStyle.xaml └── ProgressStyle.xaml ├── UpdateWindowProgram.csproj ├── WindowsBase ├── ChildWindow.cs └── ChildWindowStyle.xaml └── app.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/.gitignore -------------------------------------------------------------------------------- /InstallPackage/InstallPackageWPF.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackage/InstallPackageWPF.exe -------------------------------------------------------------------------------- /InstallPackage/InstallPackageWPF.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackage/InstallPackageWPF.exe.config -------------------------------------------------------------------------------- /InstallPackage/Resources/Environmental/MusicTeachingWindow.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackage/Resources/Environmental/MusicTeachingWindow.exe -------------------------------------------------------------------------------- /InstallPackage/Resources/Environmental/tst/MusicTeachingWindow.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackage/Resources/Environmental/tst/MusicTeachingWindow.exe -------------------------------------------------------------------------------- /InstallPackage/Resources/MusicTeachingWindow.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackage/Resources/MusicTeachingWindow.exe -------------------------------------------------------------------------------- /InstallPackage/Resources/UninstallPackageWPF.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackage/Resources/UninstallPackageWPF.exe -------------------------------------------------------------------------------- /InstallPackage/Resources/UpdateWindowProgram.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackage/Resources/UpdateWindowProgram.exe -------------------------------------------------------------------------------- /InstallPackageWPF.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF.sln -------------------------------------------------------------------------------- /InstallPackageWPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/App.xaml -------------------------------------------------------------------------------- /InstallPackageWPF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/App.xaml.cs -------------------------------------------------------------------------------- /InstallPackageWPF/Converters/BoolAsVisiableConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/Converters/BoolAsVisiableConverter.cs -------------------------------------------------------------------------------- /InstallPackageWPF/FlowDocumentInfoUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/FlowDocumentInfoUC.xaml -------------------------------------------------------------------------------- /InstallPackageWPF/FlowDocumentInfoUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/FlowDocumentInfoUC.xaml.cs -------------------------------------------------------------------------------- /InstallPackageWPF/InstallPackageWPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/InstallPackageWPF.csproj -------------------------------------------------------------------------------- /InstallPackageWPF/LocalInstallTesting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/LocalInstallTesting.cs -------------------------------------------------------------------------------- /InstallPackageWPF/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/MainWindow.xaml -------------------------------------------------------------------------------- /InstallPackageWPF/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/MainWindow.xaml.cs -------------------------------------------------------------------------------- /InstallPackageWPF/NotifyPropertyChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/NotifyPropertyChanged.cs -------------------------------------------------------------------------------- /InstallPackageWPF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /InstallPackageWPF/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /InstallPackageWPF/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/Properties/Resources.resx -------------------------------------------------------------------------------- /InstallPackageWPF/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /InstallPackageWPF/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/Properties/Settings.settings -------------------------------------------------------------------------------- /InstallPackageWPF/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/Properties/app.manifest -------------------------------------------------------------------------------- /InstallPackageWPF/Resources/Environmental/MusicTeachingWindow.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/Resources/Environmental/MusicTeachingWindow.exe -------------------------------------------------------------------------------- /InstallPackageWPF/Resources/Environmental/MusicTeachingWindow.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/Resources/Environmental/MusicTeachingWindow.exe.config -------------------------------------------------------------------------------- /InstallPackageWPF/Resources/Environmental/tst/MusicTeachingWindow.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/Resources/Environmental/tst/MusicTeachingWindow.exe -------------------------------------------------------------------------------- /InstallPackageWPF/Resources/MusicTeachingWindow.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/Resources/MusicTeachingWindow.exe -------------------------------------------------------------------------------- /InstallPackageWPF/Resources/MusicTeachingWindow.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/Resources/MusicTeachingWindow.exe.config -------------------------------------------------------------------------------- /InstallPackageWPF/Resources/UninstallPackageWPF.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/Resources/UninstallPackageWPF.exe -------------------------------------------------------------------------------- /InstallPackageWPF/Resources/UpdateWindowProgram.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/Resources/UpdateWindowProgram.exe -------------------------------------------------------------------------------- /InstallPackageWPF/Themes/ButtonStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/Themes/ButtonStyle.xaml -------------------------------------------------------------------------------- /InstallPackageWPF/Themes/InstallAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/Themes/InstallAnimation.cs -------------------------------------------------------------------------------- /InstallPackageWPF/Themes/InstallAnimationUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/Themes/InstallAnimationUC.xaml -------------------------------------------------------------------------------- /InstallPackageWPF/Themes/InstallAnimationUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/Themes/InstallAnimationUC.xaml.cs -------------------------------------------------------------------------------- /InstallPackageWPF/Themes/PathButtonStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/Themes/PathButtonStyle.xaml -------------------------------------------------------------------------------- /InstallPackageWPF/Themes/ProgressStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/Themes/ProgressStyle.xaml -------------------------------------------------------------------------------- /InstallPackageWPF/WindowsBase/ChildWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/WindowsBase/ChildWindow.cs -------------------------------------------------------------------------------- /InstallPackageWPF/WindowsBase/ChildWindowStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/WindowsBase/ChildWindowStyle.xaml -------------------------------------------------------------------------------- /InstallPackageWPF/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/InstallPackageWPF/app.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MusicTeachingWindow/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/MusicTeachingWindow/App.config -------------------------------------------------------------------------------- /MusicTeachingWindow/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/MusicTeachingWindow/App.xaml -------------------------------------------------------------------------------- /MusicTeachingWindow/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/MusicTeachingWindow/App.xaml.cs -------------------------------------------------------------------------------- /MusicTeachingWindow/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/MusicTeachingWindow/MainWindow.xaml -------------------------------------------------------------------------------- /MusicTeachingWindow/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/MusicTeachingWindow/MainWindow.xaml.cs -------------------------------------------------------------------------------- /MusicTeachingWindow/MusicTeachingWindow.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/MusicTeachingWindow/MusicTeachingWindow.csproj -------------------------------------------------------------------------------- /MusicTeachingWindow/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/MusicTeachingWindow/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MusicTeachingWindow/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/MusicTeachingWindow/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /MusicTeachingWindow/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/MusicTeachingWindow/Properties/Resources.resx -------------------------------------------------------------------------------- /MusicTeachingWindow/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/MusicTeachingWindow/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /MusicTeachingWindow/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/MusicTeachingWindow/Properties/Settings.settings -------------------------------------------------------------------------------- /Output/MusicTeachingWindow.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/Output/MusicTeachingWindow.exe -------------------------------------------------------------------------------- /Output/MusicTeachingWindow.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/Output/MusicTeachingWindow.exe.config -------------------------------------------------------------------------------- /Output/UninstallPackageWPF.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/Output/UninstallPackageWPF.exe -------------------------------------------------------------------------------- /Output/UninstallPackageWPF.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/Output/UninstallPackageWPF.exe.config -------------------------------------------------------------------------------- /Output/UpdateWindowProgram.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/Output/UpdateWindowProgram.exe -------------------------------------------------------------------------------- /Output/UpdateWindowProgram.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/Output/UpdateWindowProgram.exe.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/README.md -------------------------------------------------------------------------------- /UninstallPackageWPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UninstallPackageWPF/App.xaml -------------------------------------------------------------------------------- /UninstallPackageWPF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UninstallPackageWPF/App.xaml.cs -------------------------------------------------------------------------------- /UninstallPackageWPF/Converters/BoolAsVisiableConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UninstallPackageWPF/Converters/BoolAsVisiableConverter.cs -------------------------------------------------------------------------------- /UninstallPackageWPF/LocalUnInstallTesting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UninstallPackageWPF/LocalUnInstallTesting.cs -------------------------------------------------------------------------------- /UninstallPackageWPF/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UninstallPackageWPF/MainWindow.xaml -------------------------------------------------------------------------------- /UninstallPackageWPF/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UninstallPackageWPF/MainWindow.xaml.cs -------------------------------------------------------------------------------- /UninstallPackageWPF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UninstallPackageWPF/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UninstallPackageWPF/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UninstallPackageWPF/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /UninstallPackageWPF/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UninstallPackageWPF/Properties/Resources.resx -------------------------------------------------------------------------------- /UninstallPackageWPF/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UninstallPackageWPF/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /UninstallPackageWPF/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UninstallPackageWPF/Properties/Settings.settings -------------------------------------------------------------------------------- /UninstallPackageWPF/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UninstallPackageWPF/Properties/app.manifest -------------------------------------------------------------------------------- /UninstallPackageWPF/Themes/ButtonStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UninstallPackageWPF/Themes/ButtonStyle.xaml -------------------------------------------------------------------------------- /UninstallPackageWPF/Themes/PathButtonStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UninstallPackageWPF/Themes/PathButtonStyle.xaml -------------------------------------------------------------------------------- /UninstallPackageWPF/Themes/ProgressStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UninstallPackageWPF/Themes/ProgressStyle.xaml -------------------------------------------------------------------------------- /UninstallPackageWPF/UninstallPackageWPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UninstallPackageWPF/UninstallPackageWPF.csproj -------------------------------------------------------------------------------- /UninstallPackageWPF/WindowsBase/ChildWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UninstallPackageWPF/WindowsBase/ChildWindow.cs -------------------------------------------------------------------------------- /UninstallPackageWPF/WindowsBase/ChildWindowStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UninstallPackageWPF/WindowsBase/ChildWindowStyle.xaml -------------------------------------------------------------------------------- /UninstallPackageWPF/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UninstallPackageWPF/app.config -------------------------------------------------------------------------------- /UpdateWindowProgram/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UpdateWindowProgram/App.xaml -------------------------------------------------------------------------------- /UpdateWindowProgram/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UpdateWindowProgram/App.xaml.cs -------------------------------------------------------------------------------- /UpdateWindowProgram/Converters/BoolAsVisiableConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UpdateWindowProgram/Converters/BoolAsVisiableConverter.cs -------------------------------------------------------------------------------- /UpdateWindowProgram/Helpers/ApplicationPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UpdateWindowProgram/Helpers/ApplicationPath.cs -------------------------------------------------------------------------------- /UpdateWindowProgram/Helpers/HttpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UpdateWindowProgram/Helpers/HttpHelper.cs -------------------------------------------------------------------------------- /UpdateWindowProgram/LocalUpdateTesting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UpdateWindowProgram/LocalUpdateTesting.cs -------------------------------------------------------------------------------- /UpdateWindowProgram/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UpdateWindowProgram/MainWindow.xaml -------------------------------------------------------------------------------- /UpdateWindowProgram/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UpdateWindowProgram/MainWindow.xaml.cs -------------------------------------------------------------------------------- /UpdateWindowProgram/Models/VersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UpdateWindowProgram/Models/VersionInfo.cs -------------------------------------------------------------------------------- /UpdateWindowProgram/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UpdateWindowProgram/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UpdateWindowProgram/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UpdateWindowProgram/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /UpdateWindowProgram/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UpdateWindowProgram/Properties/Resources.resx -------------------------------------------------------------------------------- /UpdateWindowProgram/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UpdateWindowProgram/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /UpdateWindowProgram/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UpdateWindowProgram/Properties/Settings.settings -------------------------------------------------------------------------------- /UpdateWindowProgram/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UpdateWindowProgram/Properties/app.manifest -------------------------------------------------------------------------------- /UpdateWindowProgram/Themes/PathButtonStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UpdateWindowProgram/Themes/PathButtonStyle.xaml -------------------------------------------------------------------------------- /UpdateWindowProgram/Themes/ProgressStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UpdateWindowProgram/Themes/ProgressStyle.xaml -------------------------------------------------------------------------------- /UpdateWindowProgram/UpdateWindowProgram.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UpdateWindowProgram/UpdateWindowProgram.csproj -------------------------------------------------------------------------------- /UpdateWindowProgram/WindowsBase/ChildWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UpdateWindowProgram/WindowsBase/ChildWindow.cs -------------------------------------------------------------------------------- /UpdateWindowProgram/WindowsBase/ChildWindowStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UpdateWindowProgram/WindowsBase/ChildWindowStyle.xaml -------------------------------------------------------------------------------- /UpdateWindowProgram/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daixin0/InstallPackageWPF/HEAD/UpdateWindowProgram/app.config --------------------------------------------------------------------------------