├── .gitattributes ├── .vs └── DynaWin │ ├── FileContentIndex │ ├── f5f4a44f-41ed-4ca5-87f0-89cb2e0f3b45.vsidx │ └── read.lock │ ├── project-colors.json │ ├── v16 │ └── .suo │ └── v17 │ └── .suo ├── COMBINED-LICENSES.txt ├── DynaWin.sln ├── DynaWin ├── AddDynamicThemeTask.xaml ├── AddDynamicThemeTask.xaml.cs ├── AddDynamicWallpaperTask.xaml ├── AddDynamicWallpaperTask.xaml.cs ├── App.config ├── App.xaml ├── App.xaml.cs ├── DynaWin.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── PreferencesWindow.xaml ├── PreferencesWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── PublicVariables.cs ├── Resources │ ├── AddIcon.png │ ├── Background.jpg │ ├── BackgroundDark.jpg │ ├── DeleteIcon.png │ ├── DynaWinImage.jpg │ ├── DynamicThemeTaskIcon.png │ ├── DynamicWallpaperTaskIcon.png │ ├── EditIcon.png │ ├── PlaceholderWallpaper.png │ ├── SettingsIcon.png │ ├── TrashIcon.png │ ├── icon with text Dark.png │ ├── icon with text.png │ └── icon.ico ├── SettingsWindow.xaml ├── SettingsWindow.xaml.cs ├── TimePicker.xaml ├── TimePicker.xaml.cs ├── bin │ ├── Debug │ │ ├── DynaWin.exe │ │ ├── DynaWin.exe.config │ │ ├── DynaWin.pdb │ │ ├── Microsoft.Toolkit.Uwp.Notifications.dll │ │ ├── Microsoft.Toolkit.Uwp.Notifications.pdb │ │ ├── ModernWpf.Controls.dll │ │ ├── ModernWpf.dll │ │ ├── Resources │ │ │ ├── AddIcon.png │ │ │ ├── Background.jpg │ │ │ ├── BackgroundDark.jpg │ │ │ ├── DeleteIcon.png │ │ │ ├── DynaWinImage.jpg │ │ │ ├── DynamicThemeTaskIcon.png │ │ │ ├── DynamicWallpaperTaskIcon.png │ │ │ ├── EditIcon.png │ │ │ ├── PlaceholderWallpaper.png │ │ │ ├── SettingsIcon.png │ │ │ ├── TrashIcon.png │ │ │ ├── icon with text Dark.png │ │ │ ├── icon with text.png │ │ │ └── icon.ico │ │ ├── System.ValueTuple.dll │ │ ├── af-ZA │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── am-ET │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── ar-SA │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── az-Latn-AZ │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── be-BY │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── bg-BG │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── bn-BD │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── bs-Latn-BA │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── ca-ES │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── cs-CZ │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── da-DK │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── de-DE │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── el-GR │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── en-GB │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── es-ES │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── es-MX │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── et-EE │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── eu-ES │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── fa-IR │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── fi-FI │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── fr-CA │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── fr-FR │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── gl-ES │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── ha-Latn-NG │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── he-IL │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── hi-IN │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── hr-HR │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── hu-HU │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── id-ID │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── is-IS │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── it-IT │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── ja-JP │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── ka-GE │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── kk-KZ │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── km-KH │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── kn-IN │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── ko-KR │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── lo-LA │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── lt-LT │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── lv-LV │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── mk-MK │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── ml-IN │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── ms-MY │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── nb-NO │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── nl-NL │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── nn-NO │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── pl-PL │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── pt-BR │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── pt-PT │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── ro-RO │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── ru-RU │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── sk-SK │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── sl-SI │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── sq-AL │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── sr-Latn-RS │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── sv-SE │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── sw-KE │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── ta-IN │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── te-IN │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── th-TH │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── tr-TR │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── uk-UA │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── uz-Latn-UZ │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── vi-VN │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ ├── zh-CN │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ │ └── zh-TW │ │ │ ├── ModernWpf.Controls.resources.dll │ │ │ └── ModernWpf.resources.dll │ └── Release │ │ ├── DynaWin.exe │ │ ├── DynaWin.exe.config │ │ ├── DynaWin.pdb │ │ ├── Microsoft.Toolkit.Uwp.Notifications.dll │ │ ├── Microsoft.Toolkit.Uwp.Notifications.pdb │ │ ├── ModernWpf.Controls.dll │ │ ├── ModernWpf.dll │ │ ├── Resources │ │ ├── AddIcon.png │ │ ├── Background.jpg │ │ ├── BackgroundDark.jpg │ │ ├── DeleteIcon.png │ │ ├── DynaWinImage.jpg │ │ ├── DynamicThemeTaskIcon.png │ │ ├── DynamicWallpaperTaskIcon.png │ │ ├── EditIcon.png │ │ ├── PlaceholderWallpaper.png │ │ ├── SettingsIcon.png │ │ ├── TrashIcon.png │ │ ├── icon with text Dark.png │ │ ├── icon with text.png │ │ └── icon.ico │ │ ├── System.ValueTuple.dll │ │ ├── af-ZA │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── am-ET │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── ar-SA │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── az-Latn-AZ │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── be-BY │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── bg-BG │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── bn-BD │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── bs-Latn-BA │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── ca-ES │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── cs-CZ │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── da-DK │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── de-DE │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── el-GR │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── en-GB │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── es-ES │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── es-MX │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── et-EE │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── eu-ES │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── fa-IR │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── fi-FI │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── fr-CA │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── fr-FR │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── gl-ES │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── ha-Latn-NG │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── he-IL │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── hi-IN │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── hr-HR │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── hu-HU │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── id-ID │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── is-IS │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── it-IT │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── ja-JP │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── ka-GE │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── kk-KZ │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── km-KH │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── kn-IN │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── ko-KR │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── lo-LA │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── lt-LT │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── lv-LV │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── mk-MK │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── ml-IN │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── ms-MY │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── nb-NO │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── nl-NL │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── nn-NO │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── pl-PL │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── pt-BR │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── pt-PT │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── ro-RO │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── ru-RU │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── sk-SK │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── sl-SI │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── sq-AL │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── sr-Latn-RS │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── sv-SE │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── sw-KE │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── ta-IN │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── te-IN │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── th-TH │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── tr-TR │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── uk-UA │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── uz-Latn-UZ │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── vi-VN │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ ├── zh-CN │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ │ └── zh-TW │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll └── obj │ ├── Debug │ ├── .NETFramework,Version=v4.8.AssemblyAttributes.cs │ ├── AddDynamicThemeTask.baml │ ├── AddDynamicThemeTask.g.cs │ ├── AddDynamicThemeTask.g.i.cs │ ├── AddDynamicWallpaperTask.baml │ ├── AddDynamicWallpaperTask.g.cs │ ├── AddDynamicWallpaperTask.g.i.cs │ ├── App.baml │ ├── App.g.cs │ ├── App.g.i.cs │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── DynaWin.Properties.Resources.resources │ ├── DynaWin.csproj.AssemblyReference.cache │ ├── DynaWin.csproj.CopyComplete │ ├── DynaWin.csproj.CoreCompileInputs.cache │ ├── DynaWin.csproj.FileListAbsolute.txt │ ├── DynaWin.csproj.GenerateResource.cache │ ├── DynaWin.csproj.SuggestedBindingRedirects.cache │ ├── DynaWin.exe │ ├── DynaWin.g.resources │ ├── DynaWin.pdb │ ├── DynaWin_MarkupCompile.cache │ ├── DynaWin_MarkupCompile.i.cache │ ├── DynaWin_MarkupCompile.lref │ ├── GeneratedInternalTypeHelper.g.i.cs │ ├── MainWindow.baml │ ├── MainWindow.g.cs │ ├── MainWindow.g.i.cs │ ├── PreferencesWindow.baml │ ├── PreferencesWindow.g.cs │ ├── PreferencesWindow.g.i.cs │ ├── SettingsWindow.baml │ ├── SettingsWindow.g.cs │ ├── SettingsWindow.g.i.cs │ ├── TempPE │ │ └── Properties.Resources.Designer.cs.dll │ ├── TimePicker.baml │ ├── TimePicker.g.cs │ ├── TimePicker.g.i.cs │ └── _IsIncrementalBuild │ ├── DynaWin.csproj.nuget.dgspec.json │ ├── DynaWin.csproj.nuget.g.props │ ├── DynaWin.csproj.nuget.g.targets │ ├── Release │ ├── .NETFramework,Version=v4.8.AssemblyAttributes.cs │ ├── AddDynamicThemeTask.baml │ ├── AddDynamicThemeTask.g.cs │ ├── AddDynamicThemeTask.g.i.cs │ ├── AddDynamicWallpaperTask.baml │ ├── AddDynamicWallpaperTask.g.cs │ ├── AddDynamicWallpaperTask.g.i.cs │ ├── App.baml │ ├── App.g.cs │ ├── App.g.i.cs │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── DynaWin.Properties.Resources.resources │ ├── DynaWin.csproj.AssemblyReference.cache │ ├── DynaWin.csproj.CopyComplete │ ├── DynaWin.csproj.CoreCompileInputs.cache │ ├── DynaWin.csproj.FileListAbsolute.txt │ ├── DynaWin.csproj.GenerateResource.cache │ ├── DynaWin.csproj.SuggestedBindingRedirects.cache │ ├── DynaWin.exe │ ├── DynaWin.g.resources │ ├── DynaWin.pdb │ ├── DynaWin_MarkupCompile.cache │ ├── DynaWin_MarkupCompile.i.cache │ ├── DynaWin_MarkupCompile.i.lref │ ├── DynaWin_MarkupCompile.lref │ ├── MainWindow.baml │ ├── MainWindow.g.cs │ ├── MainWindow.g.i.cs │ ├── PreferencesWindow.baml │ ├── PreferencesWindow.g.cs │ ├── PreferencesWindow.g.i.cs │ ├── SettingsWindow.baml │ ├── SettingsWindow.g.cs │ ├── SettingsWindow.g.i.cs │ ├── TempPE │ │ └── Properties.Resources.Designer.cs.dll │ ├── TimePicker.baml │ ├── TimePicker.g.cs │ ├── TimePicker.g.i.cs │ └── _IsIncrementalBuild │ ├── project.assets.json │ └── project.nuget.cache ├── DynaWin_1.1.1_Setup.exe ├── LICENSE.txt ├── NOTICE.txt ├── PRIVACYPOLICY.md ├── README.md ├── Setup.iss ├── Test.txt └── setup.old ├── DynaWin_1.0.1_Setup.exe ├── DynaWin_1.0.2_Setup.exe ├── DynaWin_1.0.3_Setup.exe ├── DynaWin_1.0_Setup.exe └── DynaWin_1.1.0_Setup.exe /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.vs/DynaWin/FileContentIndex/f5f4a44f-41ed-4ca5-87f0-89cb2e0f3b45.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/.vs/DynaWin/FileContentIndex/f5f4a44f-41ed-4ca5-87f0-89cb2e0f3b45.vsidx -------------------------------------------------------------------------------- /.vs/DynaWin/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/DynaWin/project-colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/.vs/DynaWin/project-colors.json -------------------------------------------------------------------------------- /.vs/DynaWin/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/.vs/DynaWin/v16/.suo -------------------------------------------------------------------------------- /.vs/DynaWin/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/.vs/DynaWin/v17/.suo -------------------------------------------------------------------------------- /COMBINED-LICENSES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/COMBINED-LICENSES.txt -------------------------------------------------------------------------------- /DynaWin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin.sln -------------------------------------------------------------------------------- /DynaWin/AddDynamicThemeTask.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/AddDynamicThemeTask.xaml -------------------------------------------------------------------------------- /DynaWin/AddDynamicThemeTask.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/AddDynamicThemeTask.xaml.cs -------------------------------------------------------------------------------- /DynaWin/AddDynamicWallpaperTask.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/AddDynamicWallpaperTask.xaml -------------------------------------------------------------------------------- /DynaWin/AddDynamicWallpaperTask.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/AddDynamicWallpaperTask.xaml.cs -------------------------------------------------------------------------------- /DynaWin/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/App.config -------------------------------------------------------------------------------- /DynaWin/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/App.xaml -------------------------------------------------------------------------------- /DynaWin/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/App.xaml.cs -------------------------------------------------------------------------------- /DynaWin/DynaWin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/DynaWin.csproj -------------------------------------------------------------------------------- /DynaWin/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/MainWindow.xaml -------------------------------------------------------------------------------- /DynaWin/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/MainWindow.xaml.cs -------------------------------------------------------------------------------- /DynaWin/PreferencesWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/PreferencesWindow.xaml -------------------------------------------------------------------------------- /DynaWin/PreferencesWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/PreferencesWindow.xaml.cs -------------------------------------------------------------------------------- /DynaWin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DynaWin/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /DynaWin/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/Properties/Resources.resx -------------------------------------------------------------------------------- /DynaWin/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /DynaWin/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/Properties/Settings.settings -------------------------------------------------------------------------------- /DynaWin/PublicVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/PublicVariables.cs -------------------------------------------------------------------------------- /DynaWin/Resources/AddIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/Resources/AddIcon.png -------------------------------------------------------------------------------- /DynaWin/Resources/Background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/Resources/Background.jpg -------------------------------------------------------------------------------- /DynaWin/Resources/BackgroundDark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/Resources/BackgroundDark.jpg -------------------------------------------------------------------------------- /DynaWin/Resources/DeleteIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/Resources/DeleteIcon.png -------------------------------------------------------------------------------- /DynaWin/Resources/DynaWinImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/Resources/DynaWinImage.jpg -------------------------------------------------------------------------------- /DynaWin/Resources/DynamicThemeTaskIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/Resources/DynamicThemeTaskIcon.png -------------------------------------------------------------------------------- /DynaWin/Resources/DynamicWallpaperTaskIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/Resources/DynamicWallpaperTaskIcon.png -------------------------------------------------------------------------------- /DynaWin/Resources/EditIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/Resources/EditIcon.png -------------------------------------------------------------------------------- /DynaWin/Resources/PlaceholderWallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/Resources/PlaceholderWallpaper.png -------------------------------------------------------------------------------- /DynaWin/Resources/SettingsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/Resources/SettingsIcon.png -------------------------------------------------------------------------------- /DynaWin/Resources/TrashIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/Resources/TrashIcon.png -------------------------------------------------------------------------------- /DynaWin/Resources/icon with text Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/Resources/icon with text Dark.png -------------------------------------------------------------------------------- /DynaWin/Resources/icon with text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/Resources/icon with text.png -------------------------------------------------------------------------------- /DynaWin/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/Resources/icon.ico -------------------------------------------------------------------------------- /DynaWin/SettingsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/SettingsWindow.xaml -------------------------------------------------------------------------------- /DynaWin/SettingsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/SettingsWindow.xaml.cs -------------------------------------------------------------------------------- /DynaWin/TimePicker.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/TimePicker.xaml -------------------------------------------------------------------------------- /DynaWin/TimePicker.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/TimePicker.xaml.cs -------------------------------------------------------------------------------- /DynaWin/bin/Debug/DynaWin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/DynaWin.exe -------------------------------------------------------------------------------- /DynaWin/bin/Debug/DynaWin.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/DynaWin.exe.config -------------------------------------------------------------------------------- /DynaWin/bin/Debug/DynaWin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/DynaWin.pdb -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Microsoft.Toolkit.Uwp.Notifications.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/Microsoft.Toolkit.Uwp.Notifications.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Microsoft.Toolkit.Uwp.Notifications.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/Microsoft.Toolkit.Uwp.Notifications.pdb -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ModernWpf.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/ModernWpf.Controls.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ModernWpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/ModernWpf.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/AddIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/Resources/AddIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/Background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/Resources/Background.jpg -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/BackgroundDark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/Resources/BackgroundDark.jpg -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/DeleteIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/Resources/DeleteIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/DynaWinImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/Resources/DynaWinImage.jpg -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/DynamicThemeTaskIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/Resources/DynamicThemeTaskIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/DynamicWallpaperTaskIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/Resources/DynamicWallpaperTaskIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/EditIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/Resources/EditIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/PlaceholderWallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/Resources/PlaceholderWallpaper.png -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/SettingsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/Resources/SettingsIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/TrashIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/Resources/TrashIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/icon with text Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/Resources/icon with text Dark.png -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/icon with text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/Resources/icon with text.png -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/Resources/icon.ico -------------------------------------------------------------------------------- /DynaWin/bin/Debug/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/System.ValueTuple.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/af-ZA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/af-ZA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/af-ZA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/af-ZA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/am-ET/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/am-ET/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/am-ET/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/am-ET/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ar-SA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/ar-SA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ar-SA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/ar-SA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/az-Latn-AZ/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/az-Latn-AZ/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/az-Latn-AZ/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/az-Latn-AZ/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/be-BY/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/be-BY/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/be-BY/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/be-BY/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/bg-BG/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/bg-BG/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/bg-BG/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/bg-BG/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/bn-BD/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/bn-BD/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/bn-BD/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/bn-BD/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/bs-Latn-BA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/bs-Latn-BA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/bs-Latn-BA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/bs-Latn-BA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ca-ES/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/ca-ES/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ca-ES/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/ca-ES/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/cs-CZ/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/cs-CZ/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/cs-CZ/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/cs-CZ/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/da-DK/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/da-DK/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/da-DK/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/da-DK/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/de-DE/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/de-DE/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/de-DE/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/de-DE/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/el-GR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/el-GR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/el-GR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/el-GR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/en-GB/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/en-GB/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/en-GB/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/en-GB/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/es-ES/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/es-ES/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/es-ES/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/es-ES/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/es-MX/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/es-MX/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/es-MX/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/es-MX/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/et-EE/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/et-EE/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/et-EE/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/et-EE/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/eu-ES/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/eu-ES/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/eu-ES/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/eu-ES/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/fa-IR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/fa-IR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/fa-IR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/fa-IR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/fi-FI/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/fi-FI/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/fi-FI/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/fi-FI/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/fr-CA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/fr-CA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/fr-CA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/fr-CA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/fr-FR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/fr-FR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/fr-FR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/fr-FR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/gl-ES/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/gl-ES/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/gl-ES/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/gl-ES/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ha-Latn-NG/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/ha-Latn-NG/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ha-Latn-NG/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/ha-Latn-NG/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/he-IL/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/he-IL/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/he-IL/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/he-IL/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/hi-IN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/hi-IN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/hi-IN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/hi-IN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/hr-HR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/hr-HR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/hr-HR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/hr-HR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/hu-HU/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/hu-HU/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/hu-HU/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/hu-HU/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/id-ID/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/id-ID/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/id-ID/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/id-ID/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/is-IS/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/is-IS/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/is-IS/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/is-IS/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/it-IT/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/it-IT/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/it-IT/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/it-IT/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ja-JP/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/ja-JP/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ja-JP/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/ja-JP/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ka-GE/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/ka-GE/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ka-GE/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/ka-GE/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/kk-KZ/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/kk-KZ/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/kk-KZ/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/kk-KZ/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/km-KH/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/km-KH/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/km-KH/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/km-KH/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/kn-IN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/kn-IN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/kn-IN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/kn-IN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ko-KR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/ko-KR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ko-KR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/ko-KR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/lo-LA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/lo-LA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/lo-LA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/lo-LA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/lt-LT/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/lt-LT/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/lt-LT/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/lt-LT/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/lv-LV/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/lv-LV/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/lv-LV/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/lv-LV/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/mk-MK/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/mk-MK/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/mk-MK/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/mk-MK/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ml-IN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/ml-IN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ml-IN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/ml-IN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ms-MY/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/ms-MY/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ms-MY/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/ms-MY/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/nb-NO/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/nb-NO/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/nb-NO/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/nb-NO/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/nl-NL/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/nl-NL/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/nl-NL/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/nl-NL/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/nn-NO/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/nn-NO/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/nn-NO/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/nn-NO/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/pl-PL/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/pl-PL/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/pl-PL/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/pl-PL/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/pt-BR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/pt-BR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/pt-BR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/pt-BR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/pt-PT/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/pt-PT/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/pt-PT/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/pt-PT/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ro-RO/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/ro-RO/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ro-RO/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/ro-RO/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ru-RU/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/ru-RU/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ru-RU/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/ru-RU/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/sk-SK/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/sk-SK/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/sk-SK/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/sk-SK/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/sl-SI/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/sl-SI/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/sl-SI/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/sl-SI/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/sq-AL/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/sq-AL/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/sq-AL/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/sq-AL/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/sr-Latn-RS/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/sr-Latn-RS/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/sr-Latn-RS/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/sr-Latn-RS/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/sv-SE/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/sv-SE/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/sv-SE/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/sv-SE/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/sw-KE/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/sw-KE/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/sw-KE/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/sw-KE/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ta-IN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/ta-IN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ta-IN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/ta-IN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/te-IN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/te-IN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/te-IN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/te-IN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/th-TH/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/th-TH/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/th-TH/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/th-TH/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/tr-TR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/tr-TR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/tr-TR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/tr-TR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/uk-UA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/uk-UA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/uk-UA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/uk-UA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/uz-Latn-UZ/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/uz-Latn-UZ/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/uz-Latn-UZ/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/uz-Latn-UZ/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/vi-VN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/vi-VN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/vi-VN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/vi-VN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/zh-CN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/zh-CN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/zh-CN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/zh-CN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/zh-TW/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/zh-TW/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/zh-TW/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Debug/zh-TW/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/DynaWin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/DynaWin.exe -------------------------------------------------------------------------------- /DynaWin/bin/Release/DynaWin.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/DynaWin.exe.config -------------------------------------------------------------------------------- /DynaWin/bin/Release/DynaWin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/DynaWin.pdb -------------------------------------------------------------------------------- /DynaWin/bin/Release/Microsoft.Toolkit.Uwp.Notifications.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/Microsoft.Toolkit.Uwp.Notifications.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/Microsoft.Toolkit.Uwp.Notifications.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/Microsoft.Toolkit.Uwp.Notifications.pdb -------------------------------------------------------------------------------- /DynaWin/bin/Release/ModernWpf.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/ModernWpf.Controls.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ModernWpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/ModernWpf.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/AddIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/Resources/AddIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/Background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/Resources/Background.jpg -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/BackgroundDark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/Resources/BackgroundDark.jpg -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/DeleteIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/Resources/DeleteIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/DynaWinImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/Resources/DynaWinImage.jpg -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/DynamicThemeTaskIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/Resources/DynamicThemeTaskIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/DynamicWallpaperTaskIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/Resources/DynamicWallpaperTaskIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/EditIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/Resources/EditIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/PlaceholderWallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/Resources/PlaceholderWallpaper.png -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/SettingsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/Resources/SettingsIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/TrashIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/Resources/TrashIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/icon with text Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/Resources/icon with text Dark.png -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/icon with text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/Resources/icon with text.png -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/Resources/icon.ico -------------------------------------------------------------------------------- /DynaWin/bin/Release/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/System.ValueTuple.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/af-ZA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/af-ZA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/af-ZA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/af-ZA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/am-ET/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/am-ET/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/am-ET/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/am-ET/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ar-SA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/ar-SA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ar-SA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/ar-SA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/az-Latn-AZ/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/az-Latn-AZ/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/az-Latn-AZ/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/az-Latn-AZ/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/be-BY/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/be-BY/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/be-BY/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/be-BY/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/bg-BG/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/bg-BG/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/bg-BG/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/bg-BG/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/bn-BD/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/bn-BD/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/bn-BD/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/bn-BD/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/bs-Latn-BA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/bs-Latn-BA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/bs-Latn-BA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/bs-Latn-BA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ca-ES/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/ca-ES/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ca-ES/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/ca-ES/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/cs-CZ/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/cs-CZ/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/cs-CZ/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/cs-CZ/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/da-DK/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/da-DK/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/da-DK/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/da-DK/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/de-DE/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/de-DE/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/de-DE/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/de-DE/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/el-GR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/el-GR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/el-GR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/el-GR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/en-GB/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/en-GB/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/en-GB/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/en-GB/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/es-ES/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/es-ES/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/es-ES/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/es-ES/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/es-MX/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/es-MX/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/es-MX/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/es-MX/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/et-EE/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/et-EE/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/et-EE/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/et-EE/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/eu-ES/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/eu-ES/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/eu-ES/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/eu-ES/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/fa-IR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/fa-IR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/fa-IR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/fa-IR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/fi-FI/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/fi-FI/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/fi-FI/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/fi-FI/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/fr-CA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/fr-CA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/fr-CA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/fr-CA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/fr-FR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/fr-FR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/fr-FR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/fr-FR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/gl-ES/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/gl-ES/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/gl-ES/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/gl-ES/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ha-Latn-NG/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/ha-Latn-NG/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ha-Latn-NG/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/ha-Latn-NG/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/he-IL/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/he-IL/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/he-IL/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/he-IL/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/hi-IN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/hi-IN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/hi-IN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/hi-IN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/hr-HR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/hr-HR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/hr-HR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/hr-HR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/hu-HU/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/hu-HU/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/hu-HU/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/hu-HU/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/id-ID/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/id-ID/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/id-ID/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/id-ID/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/is-IS/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/is-IS/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/is-IS/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/is-IS/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/it-IT/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/it-IT/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/it-IT/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/it-IT/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ja-JP/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/ja-JP/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ja-JP/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/ja-JP/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ka-GE/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/ka-GE/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ka-GE/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/ka-GE/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/kk-KZ/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/kk-KZ/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/kk-KZ/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/kk-KZ/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/km-KH/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/km-KH/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/km-KH/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/km-KH/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/kn-IN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/kn-IN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/kn-IN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/kn-IN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ko-KR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/ko-KR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ko-KR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/ko-KR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/lo-LA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/lo-LA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/lo-LA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/lo-LA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/lt-LT/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/lt-LT/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/lt-LT/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/lt-LT/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/lv-LV/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/lv-LV/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/lv-LV/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/lv-LV/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/mk-MK/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/mk-MK/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/mk-MK/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/mk-MK/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ml-IN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/ml-IN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ml-IN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/ml-IN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ms-MY/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/ms-MY/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ms-MY/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/ms-MY/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/nb-NO/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/nb-NO/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/nb-NO/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/nb-NO/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/nl-NL/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/nl-NL/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/nl-NL/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/nl-NL/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/nn-NO/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/nn-NO/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/nn-NO/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/nn-NO/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/pl-PL/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/pl-PL/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/pl-PL/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/pl-PL/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/pt-BR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/pt-BR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/pt-BR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/pt-BR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/pt-PT/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/pt-PT/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/pt-PT/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/pt-PT/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ro-RO/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/ro-RO/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ro-RO/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/ro-RO/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ru-RU/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/ru-RU/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ru-RU/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/ru-RU/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/sk-SK/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/sk-SK/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/sk-SK/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/sk-SK/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/sl-SI/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/sl-SI/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/sl-SI/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/sl-SI/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/sq-AL/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/sq-AL/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/sq-AL/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/sq-AL/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/sr-Latn-RS/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/sr-Latn-RS/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/sr-Latn-RS/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/sr-Latn-RS/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/sv-SE/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/sv-SE/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/sv-SE/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/sv-SE/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/sw-KE/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/sw-KE/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/sw-KE/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/sw-KE/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ta-IN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/ta-IN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ta-IN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/ta-IN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/te-IN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/te-IN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/te-IN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/te-IN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/th-TH/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/th-TH/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/th-TH/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/th-TH/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/tr-TR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/tr-TR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/tr-TR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/tr-TR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/uk-UA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/uk-UA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/uk-UA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/uk-UA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/uz-Latn-UZ/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/uz-Latn-UZ/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/uz-Latn-UZ/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/uz-Latn-UZ/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/vi-VN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/vi-VN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/vi-VN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/vi-VN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/zh-CN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/zh-CN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/zh-CN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/zh-CN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/zh-TW/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/zh-TW/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/zh-TW/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/bin/Release/zh-TW/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs -------------------------------------------------------------------------------- /DynaWin/obj/Debug/AddDynamicThemeTask.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/AddDynamicThemeTask.baml -------------------------------------------------------------------------------- /DynaWin/obj/Debug/AddDynamicThemeTask.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/AddDynamicThemeTask.g.cs -------------------------------------------------------------------------------- /DynaWin/obj/Debug/AddDynamicThemeTask.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/AddDynamicThemeTask.g.i.cs -------------------------------------------------------------------------------- /DynaWin/obj/Debug/AddDynamicWallpaperTask.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/AddDynamicWallpaperTask.baml -------------------------------------------------------------------------------- /DynaWin/obj/Debug/AddDynamicWallpaperTask.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/AddDynamicWallpaperTask.g.cs -------------------------------------------------------------------------------- /DynaWin/obj/Debug/AddDynamicWallpaperTask.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/AddDynamicWallpaperTask.g.i.cs -------------------------------------------------------------------------------- /DynaWin/obj/Debug/App.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/App.baml -------------------------------------------------------------------------------- /DynaWin/obj/Debug/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/App.g.cs -------------------------------------------------------------------------------- /DynaWin/obj/Debug/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/App.g.i.cs -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DynaWin.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/DynaWin.Properties.Resources.resources -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DynaWin.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/DynaWin.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DynaWin.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DynaWin.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 693f5374fffe4b210b9d96de9965f227236723c4 2 | -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DynaWin.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/DynaWin.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DynaWin.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/DynaWin.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DynaWin.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/DynaWin.csproj.SuggestedBindingRedirects.cache -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DynaWin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/DynaWin.exe -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DynaWin.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/DynaWin.g.resources -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DynaWin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/DynaWin.pdb -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DynaWin_MarkupCompile.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/DynaWin_MarkupCompile.cache -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DynaWin_MarkupCompile.i.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/DynaWin_MarkupCompile.i.cache -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DynaWin_MarkupCompile.lref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/DynaWin_MarkupCompile.lref -------------------------------------------------------------------------------- /DynaWin/obj/Debug/GeneratedInternalTypeHelper.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/GeneratedInternalTypeHelper.g.i.cs -------------------------------------------------------------------------------- /DynaWin/obj/Debug/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/MainWindow.baml -------------------------------------------------------------------------------- /DynaWin/obj/Debug/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/MainWindow.g.cs -------------------------------------------------------------------------------- /DynaWin/obj/Debug/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/MainWindow.g.i.cs -------------------------------------------------------------------------------- /DynaWin/obj/Debug/PreferencesWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/PreferencesWindow.baml -------------------------------------------------------------------------------- /DynaWin/obj/Debug/PreferencesWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/PreferencesWindow.g.cs -------------------------------------------------------------------------------- /DynaWin/obj/Debug/PreferencesWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/PreferencesWindow.g.i.cs -------------------------------------------------------------------------------- /DynaWin/obj/Debug/SettingsWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/SettingsWindow.baml -------------------------------------------------------------------------------- /DynaWin/obj/Debug/SettingsWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/SettingsWindow.g.cs -------------------------------------------------------------------------------- /DynaWin/obj/Debug/SettingsWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/SettingsWindow.g.i.cs -------------------------------------------------------------------------------- /DynaWin/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /DynaWin/obj/Debug/TimePicker.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/TimePicker.baml -------------------------------------------------------------------------------- /DynaWin/obj/Debug/TimePicker.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/TimePicker.g.cs -------------------------------------------------------------------------------- /DynaWin/obj/Debug/TimePicker.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Debug/TimePicker.g.i.cs -------------------------------------------------------------------------------- /DynaWin/obj/Debug/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Debug\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /DynaWin/obj/DynaWin.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/DynaWin.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /DynaWin/obj/DynaWin.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/DynaWin.csproj.nuget.g.props -------------------------------------------------------------------------------- /DynaWin/obj/DynaWin.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/DynaWin.csproj.nuget.g.targets -------------------------------------------------------------------------------- /DynaWin/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs -------------------------------------------------------------------------------- /DynaWin/obj/Release/AddDynamicThemeTask.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/AddDynamicThemeTask.baml -------------------------------------------------------------------------------- /DynaWin/obj/Release/AddDynamicThemeTask.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/AddDynamicThemeTask.g.cs -------------------------------------------------------------------------------- /DynaWin/obj/Release/AddDynamicThemeTask.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/AddDynamicThemeTask.g.i.cs -------------------------------------------------------------------------------- /DynaWin/obj/Release/AddDynamicWallpaperTask.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/AddDynamicWallpaperTask.baml -------------------------------------------------------------------------------- /DynaWin/obj/Release/AddDynamicWallpaperTask.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/AddDynamicWallpaperTask.g.cs -------------------------------------------------------------------------------- /DynaWin/obj/Release/AddDynamicWallpaperTask.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/AddDynamicWallpaperTask.g.i.cs -------------------------------------------------------------------------------- /DynaWin/obj/Release/App.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/App.baml -------------------------------------------------------------------------------- /DynaWin/obj/Release/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/App.g.cs -------------------------------------------------------------------------------- /DynaWin/obj/Release/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/App.g.i.cs -------------------------------------------------------------------------------- /DynaWin/obj/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /DynaWin/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/DynaWin.Properties.Resources.resources -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/DynaWin.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 8b9a692c4d4e0a90fe253125f5c41b64b5752a31 2 | -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/DynaWin.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/DynaWin.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/DynaWin.csproj.SuggestedBindingRedirects.cache -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/DynaWin.exe -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/DynaWin.g.resources -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/DynaWin.pdb -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin_MarkupCompile.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/DynaWin_MarkupCompile.cache -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin_MarkupCompile.i.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/DynaWin_MarkupCompile.i.cache -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin_MarkupCompile.i.lref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/DynaWin_MarkupCompile.i.lref -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin_MarkupCompile.lref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/DynaWin_MarkupCompile.lref -------------------------------------------------------------------------------- /DynaWin/obj/Release/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/MainWindow.baml -------------------------------------------------------------------------------- /DynaWin/obj/Release/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/MainWindow.g.cs -------------------------------------------------------------------------------- /DynaWin/obj/Release/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/MainWindow.g.i.cs -------------------------------------------------------------------------------- /DynaWin/obj/Release/PreferencesWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/PreferencesWindow.baml -------------------------------------------------------------------------------- /DynaWin/obj/Release/PreferencesWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/PreferencesWindow.g.cs -------------------------------------------------------------------------------- /DynaWin/obj/Release/PreferencesWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/PreferencesWindow.g.i.cs -------------------------------------------------------------------------------- /DynaWin/obj/Release/SettingsWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/SettingsWindow.baml -------------------------------------------------------------------------------- /DynaWin/obj/Release/SettingsWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/SettingsWindow.g.cs -------------------------------------------------------------------------------- /DynaWin/obj/Release/SettingsWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/SettingsWindow.g.i.cs -------------------------------------------------------------------------------- /DynaWin/obj/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /DynaWin/obj/Release/TimePicker.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/TimePicker.baml -------------------------------------------------------------------------------- /DynaWin/obj/Release/TimePicker.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/TimePicker.g.cs -------------------------------------------------------------------------------- /DynaWin/obj/Release/TimePicker.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/Release/TimePicker.g.i.cs -------------------------------------------------------------------------------- /DynaWin/obj/Release/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Release\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /DynaWin/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/project.assets.json -------------------------------------------------------------------------------- /DynaWin/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin/obj/project.nuget.cache -------------------------------------------------------------------------------- /DynaWin_1.1.1_Setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/DynaWin_1.1.1_Setup.exe -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /PRIVACYPOLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/PRIVACYPOLICY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/README.md -------------------------------------------------------------------------------- /Setup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/Setup.iss -------------------------------------------------------------------------------- /Test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.old/DynaWin_1.0.1_Setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/setup.old/DynaWin_1.0.1_Setup.exe -------------------------------------------------------------------------------- /setup.old/DynaWin_1.0.2_Setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/setup.old/DynaWin_1.0.2_Setup.exe -------------------------------------------------------------------------------- /setup.old/DynaWin_1.0.3_Setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/setup.old/DynaWin_1.0.3_Setup.exe -------------------------------------------------------------------------------- /setup.old/DynaWin_1.0_Setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/setup.old/DynaWin_1.0_Setup.exe -------------------------------------------------------------------------------- /setup.old/DynaWin_1.1.0_Setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/HEAD/setup.old/DynaWin_1.1.0_Setup.exe --------------------------------------------------------------------------------