├── .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: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.vs/DynaWin/FileContentIndex/f5f4a44f-41ed-4ca5-87f0-89cb2e0f3b45.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/.vs/DynaWin/FileContentIndex/f5f4a44f-41ed-4ca5-87f0-89cb2e0f3b45.vsidx -------------------------------------------------------------------------------- /.vs/DynaWin/FileContentIndex/read.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/.vs/DynaWin/FileContentIndex/read.lock -------------------------------------------------------------------------------- /.vs/DynaWin/project-colors.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": 1, 3 | "ProjectMap": { 4 | "ec734f60-878f-4ddb-af42-9e4017ce30f5": { 5 | "ProjectGuid": "ec734f60-878f-4ddb-af42-9e4017ce30f5", 6 | "DisplayName": "DynaWin", 7 | "ColorIndex": 0 8 | } 9 | }, 10 | "NextColorIndex": 1 11 | } -------------------------------------------------------------------------------- /.vs/DynaWin/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/.vs/DynaWin/v16/.suo -------------------------------------------------------------------------------- /.vs/DynaWin/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/.vs/DynaWin/v17/.suo -------------------------------------------------------------------------------- /COMBINED-LICENSES.txt: -------------------------------------------------------------------------------- 1 | DynaWin License: 2 | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 3 | MIT License 4 | 5 | Copyright (c) 2020-present ClickPhase 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy 8 | of this software and associated documentation files (the "Software"), to deal 9 | in the Software without restriction, including without limitation the rights 10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the Software is 12 | furnished to do so, subject to the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be included in all 15 | copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 23 | SOFTWARE. 24 | 25 | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 26 | 27 | DynaWin incorporates material from third parties. As such, their respective licenses and/or notices are included in this file. 28 | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 29 | ModernWPF UI Library 30 | Source: https://github.com/Kinnara/ModernWpf 31 | 32 | MIT License 33 | 34 | Copyright (c) 2019 Yimeng Wu 35 | 36 | Permission is hereby granted, free of charge, to any person obtaining a copy 37 | of this software and associated documentation files (the "Software"), to deal 38 | in the Software without restriction, including without limitation the rights 39 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 40 | copies of the Software, and to permit persons to whom the Software is 41 | furnished to do so, subject to the following conditions: 42 | 43 | The above copyright notice and this permission notice shall be included in all 44 | copies or substantial portions of the Software. 45 | 46 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 47 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 48 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 49 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 50 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 51 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 52 | SOFTWARE. 53 | 54 | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 55 | 56 | The 2 background images for DynaWin are part of the Google Now backgrounds, and are made by Brent Couchman. 57 | Source: 58 | https://www.flickr.com/photos/brentcouchman/8775428047/ 59 | and 60 | https://www.flickr.com/photos/brentcouchman/8775428119/ 61 | 62 | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 63 | 64 | Some icons in DynaWin are part of the Fluent Icons made by Icons8. 65 | Source: https://icons8.com/icons/fluency 66 | 67 | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------- /DynaWin.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30611.23 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DynaWin", "DynaWin\DynaWin.csproj", "{EC734F60-878F-4DDB-AF42-9E4017CE30F5}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {EC734F60-878F-4DDB-AF42-9E4017CE30F5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {EC734F60-878F-4DDB-AF42-9E4017CE30F5}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {EC734F60-878F-4DDB-AF42-9E4017CE30F5}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {EC734F60-878F-4DDB-AF42-9E4017CE30F5}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {A4C39888-AA3D-4915-BC0A-AF9986900002} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /DynaWin/AddDynamicThemeTask.xaml: -------------------------------------------------------------------------------- 1 |  18 | 19 | 135 | 136 | -------------------------------------------------------------------------------- /DynaWin/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DynaWin/App.xaml: -------------------------------------------------------------------------------- 1 |  8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /DynaWin/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading; 7 | using System.Threading.Tasks; 8 | using System.Windows; 9 | 10 | namespace DynaWin 11 | { 12 | /// 13 | /// Interaction logic for App.xaml 14 | /// 15 | public partial class App : Application 16 | { 17 | 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /DynaWin/MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  16 | 17 | 23 | 24 | -------------------------------------------------------------------------------- /DynaWin/PreferencesWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Windows; 7 | using System.Windows.Controls; 8 | using System.Windows.Data; 9 | using System.Windows.Documents; 10 | using System.Windows.Input; 11 | using System.Windows.Media; 12 | using System.Windows.Media.Imaging; 13 | using System.Windows.Shapes; 14 | using System.Diagnostics; 15 | using System.Windows.Navigation; 16 | using static DynaWin.PublicVariables; 17 | using System.Reflection; 18 | using Microsoft.Win32; 19 | using System.IO; 20 | namespace DynaWin 21 | { 22 | /// 23 | /// Interaction logic for PreferencesWindow.xaml 24 | /// 25 | public partial class PreferencesWindow : Window 26 | { 27 | //function to remove dynawin from startup 28 | public void RemoveAppFromStartUp() 29 | { 30 | //iterate through .bat files in the startup folder, to find the one that has the words "start" and "dynawin" in it 31 | foreach (string BatchFile in Directory.GetFiles(StarupFolder, "*.bat")) 32 | { 33 | string line = File.ReadLines(BatchFile).First(); // gets the first line from file. 34 | 35 | //check if the line contains the words "dynawin and "start" 36 | if (line.ToLower().Contains("dynawin") && line.ToLower().Contains("start")) 37 | { 38 | //delete the batch file 39 | File.Delete(BatchFile); 40 | } 41 | } 42 | } 43 | 44 | //function to add dynawin to startup 45 | public void InstallAppOnStartUp() 46 | { 47 | RemoveAppFromStartUp(); 48 | 49 | //create a .bat file that starts dynawin. Place the bat file in the startup folder 50 | StreamWriter sw = new StreamWriter(System.IO.Path.Combine(StarupFolder, "StartDynaWin.bat")); 51 | sw.WriteLine("::This script's purpose is to start DynaWin. " + 52 | "Do not remove this comment as it is used for identification purposes."); 53 | sw.WriteLine("@echo off"); 54 | sw.WriteLine("cd " + "\"" + System.IO.Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) + "\""); 55 | sw.WriteLine("start " + System.IO.Path.GetFileName(Assembly.GetExecutingAssembly().Location)); 56 | sw.Close(); 57 | 58 | } 59 | 60 | //function to check if dynawin is running on startup 61 | public bool IsDynaWinRunningOnStartup() 62 | { 63 | bool RunOnStartup = false; 64 | 65 | //iterate through .bat files in the startup folder, to find the one that has the words "start" and "dynawin" in it 66 | foreach (string BatchFile in Directory.GetFiles(StarupFolder, "*.bat")) 67 | { 68 | string line = File.ReadLines(BatchFile).First(); // gets the first line from file. 69 | 70 | //check if the line contains the words "dynawin and "start" 71 | if (line.ToLower().Contains("dynawin") && line.ToLower().Contains("start")) 72 | { 73 | //set run on startup to true 74 | RunOnStartup = true; 75 | } 76 | } 77 | 78 | return RunOnStartup; 79 | } 80 | 81 | public PreferencesWindow() 82 | { 83 | InitializeComponent(); 84 | 85 | //set the text of the VersionLabel to the current verion (from public variables) 86 | VersionLabel.Content = "Current version: " + DynaWinCurrentVersion; 87 | 88 | //set the checkbox check state 89 | StartupCheckBox.IsChecked = IsDynaWinRunningOnStartup(); 90 | } 91 | 92 | 93 | 94 | private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e) 95 | { 96 | foreach (Window window in Application.Current.Windows) 97 | { 98 | if (window.GetType() == typeof(SettingsWindow)) 99 | { 100 | var settingsWindow = window as SettingsWindow; 101 | 102 | //reenable this window 103 | settingsWindow.IsEnabled = true; 104 | 105 | //activate settings window 106 | settingsWindow.Activate(); 107 | 108 | } 109 | } 110 | } 111 | 112 | private void UpdateBtn_Click(object sender, RoutedEventArgs e) 113 | { 114 | //check for updates 115 | CheckForUpdates(true); 116 | } 117 | 118 | private void HyperLink_RequestNavigate(object sender, System.Windows.Navigation.RequestNavigateEventArgs e) 119 | { 120 | //navigate to the link 121 | Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri)); 122 | e.Handled = true; 123 | } 124 | 125 | private void SaveBtn_Click(object sender, RoutedEventArgs e) 126 | { 127 | //check the checkstate of the run on windows startup 128 | if (StartupCheckBox.IsChecked == true) 129 | { 130 | //add application to startup 131 | InstallAppOnStartUp(); 132 | 133 | } 134 | else if (StartupCheckBox.IsChecked == false) 135 | { 136 | //remove application from startup 137 | RemoveAppFromStartUp(); 138 | 139 | } 140 | 141 | this.Close(); 142 | } 143 | } 144 | } 145 | -------------------------------------------------------------------------------- /DynaWin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Resources; 3 | using System.Runtime.CompilerServices; 4 | using System.Runtime.InteropServices; 5 | using System.Windows; 6 | 7 | // General Information about an assembly is controlled through the following 8 | // set of attributes. Change these attribute values to modify the information 9 | // associated with an assembly. 10 | [assembly: AssemblyTitle("DynaWin")] 11 | [assembly: AssemblyDescription("DynaWin - Dynamic Desktop for Windows")] 12 | [assembly: AssemblyConfiguration("")] 13 | [assembly: AssemblyCompany("ClickPhase")] 14 | [assembly: AssemblyProduct("DynaWin")] 15 | [assembly: AssemblyCopyright("Copyright © 2020-present ClickPhase")] 16 | [assembly: AssemblyTrademark("")] 17 | [assembly: AssemblyCulture("")] 18 | 19 | // Setting ComVisible to false makes the types in this assembly not visible 20 | // to COM components. If you need to access a type in this assembly from 21 | // COM, set the ComVisible attribute to true on that type. 22 | [assembly: ComVisible(false)] 23 | 24 | //In order to begin building localizable applications, set 25 | //CultureYouAreCodingWith in your .csproj file 26 | //inside a . For example, if you are using US english 27 | //in your source files, set the to en-US. Then uncomment 28 | //the NeutralResourceLanguage attribute below. Update the "en-US" in 29 | //the line below to match the UICulture setting in the project file. 30 | 31 | //[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] 32 | 33 | 34 | [assembly: ThemeInfo( 35 | ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located 36 | //(used if a resource is not found in the page, 37 | // or application resource dictionaries) 38 | ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located 39 | //(used if a resource is not found in the page, 40 | // app, or any theme specific resource dictionaries) 41 | )] 42 | 43 | 44 | // Version information for an assembly consists of the following four values: 45 | // 46 | // Major Version 47 | // Minor Version 48 | // Build Number 49 | // Revision 50 | // 51 | // You can specify all the values or you can default the Build and Revision Numbers 52 | // by using the '*' as shown below: 53 | // [assembly: AssemblyVersion("1.0.*")] 54 | [assembly: AssemblyVersion("1.1.1")] 55 | [assembly: AssemblyFileVersion("1.1.1")] 56 | -------------------------------------------------------------------------------- /DynaWin/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace DynaWin.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /DynaWin/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /DynaWin/Resources/AddIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/Resources/AddIcon.png -------------------------------------------------------------------------------- /DynaWin/Resources/Background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/Resources/Background.jpg -------------------------------------------------------------------------------- /DynaWin/Resources/BackgroundDark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/Resources/BackgroundDark.jpg -------------------------------------------------------------------------------- /DynaWin/Resources/DeleteIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/Resources/DeleteIcon.png -------------------------------------------------------------------------------- /DynaWin/Resources/DynaWinImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/Resources/DynaWinImage.jpg -------------------------------------------------------------------------------- /DynaWin/Resources/DynamicThemeTaskIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/Resources/DynamicThemeTaskIcon.png -------------------------------------------------------------------------------- /DynaWin/Resources/DynamicWallpaperTaskIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/Resources/DynamicWallpaperTaskIcon.png -------------------------------------------------------------------------------- /DynaWin/Resources/EditIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/Resources/EditIcon.png -------------------------------------------------------------------------------- /DynaWin/Resources/PlaceholderWallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/Resources/PlaceholderWallpaper.png -------------------------------------------------------------------------------- /DynaWin/Resources/SettingsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/Resources/SettingsIcon.png -------------------------------------------------------------------------------- /DynaWin/Resources/TrashIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/Resources/TrashIcon.png -------------------------------------------------------------------------------- /DynaWin/Resources/icon with text Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/Resources/icon with text Dark.png -------------------------------------------------------------------------------- /DynaWin/Resources/icon with text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/Resources/icon with text.png -------------------------------------------------------------------------------- /DynaWin/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/Resources/icon.ico -------------------------------------------------------------------------------- /DynaWin/SettingsWindow.xaml: -------------------------------------------------------------------------------- 1 |  20 | 21 | 22 | 23 | 24 | 25 | 33 | 131 | 132 | -------------------------------------------------------------------------------- /DynaWin/TimePicker.xaml: -------------------------------------------------------------------------------- 1 |  9 | 10 | 11 | 12 | 13 | 14 | 15 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /DynaWin/TimePicker.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Windows; 7 | using System.Windows.Controls; 8 | using System.Windows.Data; 9 | using System.Windows.Documents; 10 | using System.Windows.Input; 11 | using System.Windows.Media; 12 | using System.Windows.Media.Imaging; 13 | using System.Windows.Navigation; 14 | using System.Windows.Shapes; 15 | 16 | namespace DynaWin 17 | { 18 | /// 19 | /// Interaction logic for TimePicker.xaml 20 | /// 21 | public partial class TimePicker : UserControl 22 | { 23 | public int TimeHour = 1; 24 | public int TimeMinute = 0; 25 | public TimePicker() 26 | { 27 | InitializeComponent(); 28 | 29 | //add the time items for hours 30 | while (TimeHour != 13) 31 | { 32 | string TimeHourItem = TimeHour.ToString(); 33 | 34 | //add it to the Hours combobox 35 | Hours.Items.Add(TimeHourItem); 36 | 37 | TimeHour += 1; 38 | } 39 | 40 | //add the time items for minutes in intervals of 5 41 | while (TimeMinute != 60) 42 | { 43 | string TimeMinuteItem; 44 | 45 | if (TimeMinute <= 9) 46 | { 47 | //this is a one digit number 48 | TimeMinuteItem = "0" + TimeMinute.ToString(); 49 | } 50 | else 51 | { 52 | //this is a 2 digit number, don't need to add a leading zero 53 | TimeMinuteItem = TimeMinute.ToString(); 54 | } 55 | 56 | Minutes.Items.Add(TimeMinuteItem); 57 | 58 | TimeMinute += 5; 59 | } 60 | 61 | //add the AM and PM 62 | AMPM.Items.Add("AM"); 63 | AMPM.Items.Add("PM"); 64 | } 65 | 66 | //the code in this section is for the event handler----------------------------------- 67 | 68 | //Create an event handler 69 | public delegate void TimeSelectionChanged(object sender, SelectionChangedEventArgs e); 70 | public event TimeSelectionChanged OnTimeSelectionChanged; 71 | 72 | protected virtual void TimeSelectedChangeRaise(SelectionChangedEventArgs e) 73 | { 74 | // Raise the event 75 | if (OnTimeSelectionChanged != null) 76 | OnTimeSelectionChanged(this, e); 77 | } 78 | 79 | private void Hours_SelectionChanged(object sender, SelectionChangedEventArgs e) 80 | { 81 | //raise the selectionchanged event 82 | TimeSelectedChangeRaise(null); 83 | } 84 | 85 | private void Minutes_SelectionChanged(object sender, SelectionChangedEventArgs e) 86 | { 87 | //raise the selectionchanged event 88 | TimeSelectedChangeRaise(null); 89 | } 90 | 91 | private void AMPM_SelectionChanged(object sender, SelectionChangedEventArgs e) 92 | { 93 | //raise the selectionchanged event 94 | TimeSelectedChangeRaise(null); 95 | } 96 | 97 | //------------------------------------------------------------------------------------ 98 | 99 | //function to get the selected time 100 | public string GetSelectedTime() 101 | { 102 | //convert the selection from the comboboxes to string 103 | string SelectedTime = Hours.SelectedItem + ":" + 104 | Minutes.SelectedItem + " " + AMPM.SelectedItem; 105 | 106 | return SelectedTime; 107 | 108 | } 109 | 110 | //function to set the time 111 | //ONLY SET THE TIME IN MULTIPLES OF 5 112 | public void SetSelectedTime(int hour, int minute, string AMORPM) 113 | { 114 | //set the selected item 115 | Hours.SelectedItem = hour.ToString(); 116 | Minutes.SelectedItem = minute.ToString(); 117 | AMPM.SelectedItem = AMORPM.ToString(); 118 | } 119 | 120 | //function to set the time using a string (e.g 8:00 AM, 12:00 PM) 121 | public void SetTimeAsString(string time) 122 | { 123 | //replace " " and ":" from the string with another character to split the string 124 | time = time.Replace(" ", ";"); 125 | time = time.Replace(":", ";"); 126 | 127 | //split the string using the ";" 128 | string[] splitTime = time.Split(';'); 129 | 130 | //set the selecteditem of the comboboxes 131 | Hours.SelectedItem = splitTime[0]; 132 | Minutes.SelectedItem = splitTime[1]; 133 | AMPM.SelectedItem = splitTime[2]; 134 | 135 | 136 | } 137 | } 138 | 139 | 140 | } 141 | 142 | -------------------------------------------------------------------------------- /DynaWin/bin/Debug/DynaWin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/DynaWin.exe -------------------------------------------------------------------------------- /DynaWin/bin/Debug/DynaWin.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DynaWin/bin/Debug/DynaWin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/DynaWin.pdb -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Microsoft.Toolkit.Uwp.Notifications.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/Microsoft.Toolkit.Uwp.Notifications.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Microsoft.Toolkit.Uwp.Notifications.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/Microsoft.Toolkit.Uwp.Notifications.pdb -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ModernWpf.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/ModernWpf.Controls.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ModernWpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/ModernWpf.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/AddIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/Resources/AddIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/Background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/Resources/Background.jpg -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/BackgroundDark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/Resources/BackgroundDark.jpg -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/DeleteIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/Resources/DeleteIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/DynaWinImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/Resources/DynaWinImage.jpg -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/DynamicThemeTaskIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/Resources/DynamicThemeTaskIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/DynamicWallpaperTaskIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/Resources/DynamicWallpaperTaskIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/EditIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/Resources/EditIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/PlaceholderWallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/Resources/PlaceholderWallpaper.png -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/SettingsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/Resources/SettingsIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/TrashIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/Resources/TrashIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/icon with text Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/Resources/icon with text Dark.png -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/icon with text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/Resources/icon with text.png -------------------------------------------------------------------------------- /DynaWin/bin/Debug/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/Resources/icon.ico -------------------------------------------------------------------------------- /DynaWin/bin/Debug/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/System.ValueTuple.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/af-ZA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/af-ZA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/af-ZA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/af-ZA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/am-ET/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/am-ET/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/am-ET/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/am-ET/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ar-SA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/ar-SA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ar-SA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/ar-SA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/az-Latn-AZ/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/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/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/az-Latn-AZ/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/be-BY/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/be-BY/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/be-BY/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/be-BY/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/bg-BG/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/bg-BG/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/bg-BG/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/bg-BG/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/bn-BD/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/bn-BD/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/bn-BD/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/bn-BD/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/bs-Latn-BA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/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/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/bs-Latn-BA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ca-ES/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/ca-ES/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ca-ES/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/ca-ES/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/cs-CZ/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/cs-CZ/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/cs-CZ/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/cs-CZ/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/da-DK/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/da-DK/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/da-DK/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/da-DK/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/de-DE/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/de-DE/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/de-DE/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/de-DE/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/el-GR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/el-GR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/el-GR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/el-GR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/en-GB/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/en-GB/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/en-GB/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/en-GB/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/es-ES/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/es-ES/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/es-ES/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/es-ES/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/es-MX/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/es-MX/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/es-MX/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/es-MX/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/et-EE/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/et-EE/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/et-EE/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/et-EE/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/eu-ES/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/eu-ES/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/eu-ES/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/eu-ES/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/fa-IR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/fa-IR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/fa-IR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/fa-IR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/fi-FI/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/fi-FI/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/fi-FI/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/fi-FI/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/fr-CA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/fr-CA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/fr-CA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/fr-CA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/fr-FR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/fr-FR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/fr-FR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/fr-FR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/gl-ES/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/gl-ES/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/gl-ES/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/gl-ES/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ha-Latn-NG/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/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/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/ha-Latn-NG/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/he-IL/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/he-IL/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/he-IL/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/he-IL/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/hi-IN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/hi-IN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/hi-IN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/hi-IN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/hr-HR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/hr-HR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/hr-HR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/hr-HR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/hu-HU/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/hu-HU/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/hu-HU/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/hu-HU/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/id-ID/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/id-ID/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/id-ID/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/id-ID/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/is-IS/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/is-IS/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/is-IS/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/is-IS/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/it-IT/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/it-IT/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/it-IT/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/it-IT/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ja-JP/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/ja-JP/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ja-JP/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/ja-JP/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ka-GE/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/ka-GE/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ka-GE/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/ka-GE/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/kk-KZ/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/kk-KZ/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/kk-KZ/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/kk-KZ/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/km-KH/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/km-KH/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/km-KH/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/km-KH/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/kn-IN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/kn-IN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/kn-IN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/kn-IN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ko-KR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/ko-KR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ko-KR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/ko-KR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/lo-LA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/lo-LA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/lo-LA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/lo-LA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/lt-LT/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/lt-LT/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/lt-LT/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/lt-LT/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/lv-LV/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/lv-LV/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/lv-LV/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/lv-LV/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/mk-MK/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/mk-MK/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/mk-MK/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/mk-MK/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ml-IN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/ml-IN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ml-IN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/ml-IN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ms-MY/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/ms-MY/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ms-MY/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/ms-MY/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/nb-NO/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/nb-NO/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/nb-NO/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/nb-NO/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/nl-NL/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/nl-NL/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/nl-NL/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/nl-NL/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/nn-NO/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/nn-NO/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/nn-NO/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/nn-NO/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/pl-PL/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/pl-PL/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/pl-PL/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/pl-PL/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/pt-BR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/pt-BR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/pt-BR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/pt-BR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/pt-PT/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/pt-PT/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/pt-PT/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/pt-PT/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ro-RO/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/ro-RO/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ro-RO/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/ro-RO/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ru-RU/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/ru-RU/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ru-RU/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/ru-RU/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/sk-SK/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/sk-SK/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/sk-SK/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/sk-SK/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/sl-SI/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/sl-SI/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/sl-SI/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/sl-SI/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/sq-AL/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/sq-AL/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/sq-AL/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/sq-AL/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/sr-Latn-RS/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/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/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/sr-Latn-RS/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/sv-SE/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/sv-SE/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/sv-SE/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/sv-SE/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/sw-KE/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/sw-KE/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/sw-KE/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/sw-KE/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ta-IN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/ta-IN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/ta-IN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/ta-IN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/te-IN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/te-IN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/te-IN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/te-IN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/th-TH/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/th-TH/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/th-TH/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/th-TH/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/tr-TR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/tr-TR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/tr-TR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/tr-TR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/uk-UA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/uk-UA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/uk-UA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/uk-UA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/uz-Latn-UZ/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/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/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/uz-Latn-UZ/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/vi-VN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/vi-VN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/vi-VN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/vi-VN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/zh-CN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/zh-CN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/zh-CN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/zh-CN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/zh-TW/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/zh-TW/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Debug/zh-TW/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Debug/zh-TW/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/DynaWin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/DynaWin.exe -------------------------------------------------------------------------------- /DynaWin/bin/Release/DynaWin.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DynaWin/bin/Release/DynaWin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/DynaWin.pdb -------------------------------------------------------------------------------- /DynaWin/bin/Release/Microsoft.Toolkit.Uwp.Notifications.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/Microsoft.Toolkit.Uwp.Notifications.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/Microsoft.Toolkit.Uwp.Notifications.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/Microsoft.Toolkit.Uwp.Notifications.pdb -------------------------------------------------------------------------------- /DynaWin/bin/Release/ModernWpf.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/ModernWpf.Controls.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ModernWpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/ModernWpf.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/AddIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/Resources/AddIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/Background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/Resources/Background.jpg -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/BackgroundDark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/Resources/BackgroundDark.jpg -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/DeleteIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/Resources/DeleteIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/DynaWinImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/Resources/DynaWinImage.jpg -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/DynamicThemeTaskIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/Resources/DynamicThemeTaskIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/DynamicWallpaperTaskIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/Resources/DynamicWallpaperTaskIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/EditIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/Resources/EditIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/PlaceholderWallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/Resources/PlaceholderWallpaper.png -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/SettingsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/Resources/SettingsIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/TrashIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/Resources/TrashIcon.png -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/icon with text Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/Resources/icon with text Dark.png -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/icon with text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/Resources/icon with text.png -------------------------------------------------------------------------------- /DynaWin/bin/Release/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/Resources/icon.ico -------------------------------------------------------------------------------- /DynaWin/bin/Release/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/System.ValueTuple.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/af-ZA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/af-ZA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/af-ZA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/af-ZA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/am-ET/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/am-ET/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/am-ET/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/am-ET/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ar-SA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/ar-SA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ar-SA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/ar-SA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/az-Latn-AZ/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/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/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/az-Latn-AZ/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/be-BY/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/be-BY/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/be-BY/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/be-BY/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/bg-BG/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/bg-BG/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/bg-BG/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/bg-BG/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/bn-BD/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/bn-BD/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/bn-BD/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/bn-BD/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/bs-Latn-BA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/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/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/bs-Latn-BA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ca-ES/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/ca-ES/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ca-ES/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/ca-ES/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/cs-CZ/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/cs-CZ/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/cs-CZ/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/cs-CZ/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/da-DK/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/da-DK/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/da-DK/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/da-DK/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/de-DE/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/de-DE/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/de-DE/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/de-DE/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/el-GR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/el-GR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/el-GR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/el-GR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/en-GB/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/en-GB/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/en-GB/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/en-GB/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/es-ES/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/es-ES/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/es-ES/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/es-ES/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/es-MX/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/es-MX/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/es-MX/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/es-MX/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/et-EE/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/et-EE/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/et-EE/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/et-EE/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/eu-ES/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/eu-ES/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/eu-ES/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/eu-ES/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/fa-IR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/fa-IR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/fa-IR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/fa-IR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/fi-FI/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/fi-FI/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/fi-FI/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/fi-FI/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/fr-CA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/fr-CA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/fr-CA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/fr-CA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/fr-FR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/fr-FR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/fr-FR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/fr-FR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/gl-ES/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/gl-ES/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/gl-ES/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/gl-ES/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ha-Latn-NG/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/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/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/ha-Latn-NG/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/he-IL/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/he-IL/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/he-IL/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/he-IL/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/hi-IN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/hi-IN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/hi-IN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/hi-IN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/hr-HR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/hr-HR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/hr-HR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/hr-HR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/hu-HU/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/hu-HU/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/hu-HU/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/hu-HU/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/id-ID/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/id-ID/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/id-ID/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/id-ID/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/is-IS/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/is-IS/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/is-IS/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/is-IS/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/it-IT/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/it-IT/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/it-IT/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/it-IT/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ja-JP/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/ja-JP/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ja-JP/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/ja-JP/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ka-GE/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/ka-GE/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ka-GE/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/ka-GE/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/kk-KZ/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/kk-KZ/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/kk-KZ/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/kk-KZ/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/km-KH/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/km-KH/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/km-KH/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/km-KH/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/kn-IN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/kn-IN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/kn-IN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/kn-IN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ko-KR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/ko-KR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ko-KR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/ko-KR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/lo-LA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/lo-LA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/lo-LA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/lo-LA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/lt-LT/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/lt-LT/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/lt-LT/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/lt-LT/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/lv-LV/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/lv-LV/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/lv-LV/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/lv-LV/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/mk-MK/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/mk-MK/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/mk-MK/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/mk-MK/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ml-IN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/ml-IN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ml-IN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/ml-IN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ms-MY/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/ms-MY/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ms-MY/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/ms-MY/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/nb-NO/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/nb-NO/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/nb-NO/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/nb-NO/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/nl-NL/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/nl-NL/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/nl-NL/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/nl-NL/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/nn-NO/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/nn-NO/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/nn-NO/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/nn-NO/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/pl-PL/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/pl-PL/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/pl-PL/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/pl-PL/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/pt-BR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/pt-BR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/pt-BR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/pt-BR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/pt-PT/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/pt-PT/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/pt-PT/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/pt-PT/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ro-RO/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/ro-RO/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ro-RO/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/ro-RO/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ru-RU/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/ru-RU/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ru-RU/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/ru-RU/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/sk-SK/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/sk-SK/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/sk-SK/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/sk-SK/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/sl-SI/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/sl-SI/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/sl-SI/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/sl-SI/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/sq-AL/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/sq-AL/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/sq-AL/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/sq-AL/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/sr-Latn-RS/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/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/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/sr-Latn-RS/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/sv-SE/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/sv-SE/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/sv-SE/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/sv-SE/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/sw-KE/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/sw-KE/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/sw-KE/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/sw-KE/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ta-IN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/ta-IN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/ta-IN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/ta-IN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/te-IN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/te-IN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/te-IN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/te-IN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/th-TH/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/th-TH/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/th-TH/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/th-TH/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/tr-TR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/tr-TR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/tr-TR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/tr-TR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/uk-UA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/uk-UA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/uk-UA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/uk-UA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/uz-Latn-UZ/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/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/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/uz-Latn-UZ/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/vi-VN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/vi-VN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/vi-VN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/vi-VN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/zh-CN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/zh-CN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/zh-CN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/zh-CN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/zh-TW/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/zh-TW/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /DynaWin/bin/Release/zh-TW/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/bin/Release/zh-TW/ModernWpf.resources.dll -------------------------------------------------------------------------------- /DynaWin/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] 5 | -------------------------------------------------------------------------------- /DynaWin/obj/Debug/AddDynamicThemeTask.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Debug/AddDynamicThemeTask.baml -------------------------------------------------------------------------------- /DynaWin/obj/Debug/AddDynamicWallpaperTask.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Debug/AddDynamicWallpaperTask.baml -------------------------------------------------------------------------------- /DynaWin/obj/Debug/App.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Debug/App.baml -------------------------------------------------------------------------------- /DynaWin/obj/Debug/App.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "E80C23CCD8970B5CA79AAD69253593F9E82D7290F898CBA40B872858BF994271" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // This code was generated by a tool. 5 | // Runtime Version:4.0.30319.42000 6 | // 7 | // Changes to this file may cause incorrect behavior and will be lost if 8 | // the code is regenerated. 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using DynaWin; 13 | using ModernWpf; 14 | using ModernWpf.Controls; 15 | using ModernWpf.Controls.Primitives; 16 | using ModernWpf.DesignTime; 17 | using ModernWpf.Markup; 18 | using ModernWpf.Media.Animation; 19 | using System; 20 | using System.Diagnostics; 21 | using System.Windows; 22 | using System.Windows.Automation; 23 | using System.Windows.Controls; 24 | using System.Windows.Controls.Primitives; 25 | using System.Windows.Data; 26 | using System.Windows.Documents; 27 | using System.Windows.Ink; 28 | using System.Windows.Input; 29 | using System.Windows.Markup; 30 | using System.Windows.Media; 31 | using System.Windows.Media.Animation; 32 | using System.Windows.Media.Effects; 33 | using System.Windows.Media.Imaging; 34 | using System.Windows.Media.Media3D; 35 | using System.Windows.Media.TextFormatting; 36 | using System.Windows.Navigation; 37 | using System.Windows.Shapes; 38 | using System.Windows.Shell; 39 | 40 | 41 | namespace DynaWin { 42 | 43 | 44 | /// 45 | /// App 46 | /// 47 | public partial class App : System.Windows.Application { 48 | 49 | private bool _contentLoaded; 50 | 51 | /// 52 | /// InitializeComponent 53 | /// 54 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 55 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 56 | public void InitializeComponent() { 57 | if (_contentLoaded) { 58 | return; 59 | } 60 | _contentLoaded = true; 61 | 62 | #line 7 "..\..\App.xaml" 63 | this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative); 64 | 65 | #line default 66 | #line hidden 67 | System.Uri resourceLocater = new System.Uri("/DynaWin;component/app.xaml", System.UriKind.Relative); 68 | 69 | #line 1 "..\..\App.xaml" 70 | System.Windows.Application.LoadComponent(this, resourceLocater); 71 | 72 | #line default 73 | #line hidden 74 | } 75 | 76 | /// 77 | /// Application Entry Point. 78 | /// 79 | [System.STAThreadAttribute()] 80 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 81 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 82 | public static void Main() { 83 | DynaWin.App app = new DynaWin.App(); 84 | app.InitializeComponent(); 85 | app.Run(); 86 | } 87 | } 88 | } 89 | 90 | -------------------------------------------------------------------------------- /DynaWin/obj/Debug/App.g.i.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "E80C23CCD8970B5CA79AAD69253593F9E82D7290F898CBA40B872858BF994271" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // This code was generated by a tool. 5 | // Runtime Version:4.0.30319.42000 6 | // 7 | // Changes to this file may cause incorrect behavior and will be lost if 8 | // the code is regenerated. 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using DynaWin; 13 | using ModernWpf; 14 | using ModernWpf.Controls; 15 | using ModernWpf.Controls.Primitives; 16 | using ModernWpf.DesignTime; 17 | using ModernWpf.Markup; 18 | using ModernWpf.Media.Animation; 19 | using System; 20 | using System.Diagnostics; 21 | using System.Windows; 22 | using System.Windows.Automation; 23 | using System.Windows.Controls; 24 | using System.Windows.Controls.Primitives; 25 | using System.Windows.Data; 26 | using System.Windows.Documents; 27 | using System.Windows.Ink; 28 | using System.Windows.Input; 29 | using System.Windows.Markup; 30 | using System.Windows.Media; 31 | using System.Windows.Media.Animation; 32 | using System.Windows.Media.Effects; 33 | using System.Windows.Media.Imaging; 34 | using System.Windows.Media.Media3D; 35 | using System.Windows.Media.TextFormatting; 36 | using System.Windows.Navigation; 37 | using System.Windows.Shapes; 38 | using System.Windows.Shell; 39 | 40 | 41 | namespace DynaWin { 42 | 43 | 44 | /// 45 | /// App 46 | /// 47 | public partial class App : System.Windows.Application { 48 | 49 | private bool _contentLoaded; 50 | 51 | /// 52 | /// InitializeComponent 53 | /// 54 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 55 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 56 | public void InitializeComponent() { 57 | if (_contentLoaded) { 58 | return; 59 | } 60 | _contentLoaded = true; 61 | 62 | #line 7 "..\..\App.xaml" 63 | this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative); 64 | 65 | #line default 66 | #line hidden 67 | System.Uri resourceLocater = new System.Uri("/DynaWin;component/app.xaml", System.UriKind.Relative); 68 | 69 | #line 1 "..\..\App.xaml" 70 | System.Windows.Application.LoadComponent(this, resourceLocater); 71 | 72 | #line default 73 | #line hidden 74 | } 75 | 76 | /// 77 | /// Application Entry Point. 78 | /// 79 | [System.STAThreadAttribute()] 80 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 81 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 82 | public static void Main() { 83 | DynaWin.App app = new DynaWin.App(); 84 | app.InitializeComponent(); 85 | app.Run(); 86 | } 87 | } 88 | } 89 | 90 | -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DynaWin.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Debug/DynaWin.Properties.Resources.resources -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DynaWin.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Debug/DynaWin.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DynaWin.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Debug/DynaWin.csproj.CopyComplete -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DynaWin.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 693f5374fffe4b210b9d96de9965f227236723c4 2 | -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DynaWin.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Debug/DynaWin.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DynaWin.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- 1 | d2483497eb9b13c4563d22cbabd4e8c51d8e9682 2 | -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DynaWin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Debug/DynaWin.exe -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DynaWin.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Debug/DynaWin.g.resources -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DynaWin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Debug/DynaWin.pdb -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DynaWin_MarkupCompile.cache: -------------------------------------------------------------------------------- 1 | DynaWin 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | C:\Users\fligh\source\repos\DynaWin\DynaWin\obj\Debug\ 8 | DynaWin 9 | none 10 | false 11 | DEBUG;TRACE 12 | C:\Users\fligh\source\repos\DynaWin\DynaWin\App.xaml 13 | 61926805382 14 | 15 | 11-1796028224 16 | 215601286866 17 | AddDynamicThemeTask.xaml;AddDynamicWallpaperTask.xaml;MainWindow.xaml;PreferencesWindow.xaml;SettingsWindow.xaml;TimePicker.xaml; 18 | 19 | False 20 | 21 | -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DynaWin_MarkupCompile.i.cache: -------------------------------------------------------------------------------- 1 | DynaWin 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | C:\Users\fligh\source\repos\DynaWin\DynaWin\obj\Debug\ 8 | DynaWin 9 | none 10 | false 11 | DEBUG;TRACE 12 | C:\Users\fligh\source\repos\DynaWin\DynaWin\App.xaml 13 | 61926805382 14 | 15 | 12125749897 16 | 215601286866 17 | AddDynamicThemeTask.xaml;AddDynamicWallpaperTask.xaml;MainWindow.xaml;PreferencesWindow.xaml;SettingsWindow.xaml;TimePicker.xaml; 18 | 19 | False 20 | 21 | -------------------------------------------------------------------------------- /DynaWin/obj/Debug/DynaWin_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 |  2 | FC:\Users\fligh\source\repos\DynaWin\DynaWin\App.xaml;; 3 | FC:\Users\fligh\source\repos\DynaWin\DynaWin\AddDynamicThemeTask.xaml;; 4 | FC:\Users\fligh\source\repos\DynaWin\DynaWin\AddDynamicWallpaperTask.xaml;; 5 | FC:\Users\fligh\source\repos\DynaWin\DynaWin\MainWindow.xaml;; 6 | FC:\Users\fligh\source\repos\DynaWin\DynaWin\PreferencesWindow.xaml;; 7 | FC:\Users\fligh\source\repos\DynaWin\DynaWin\SettingsWindow.xaml;; 8 | FC:\Users\fligh\source\repos\DynaWin\DynaWin\TimePicker.xaml;; 9 | 10 | -------------------------------------------------------------------------------- /DynaWin/obj/Debug/GeneratedInternalTypeHelper.g.i.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace XamlGeneratedNamespace { 12 | 13 | 14 | /// 15 | /// GeneratedInternalTypeHelper 16 | /// 17 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 18 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 19 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 20 | public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper { 21 | 22 | /// 23 | /// CreateInstance 24 | /// 25 | protected override object CreateInstance(System.Type type, System.Globalization.CultureInfo culture) { 26 | return System.Activator.CreateInstance(type, ((System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic) 27 | | (System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.CreateInstance)), null, null, culture); 28 | } 29 | 30 | /// 31 | /// GetPropertyValue 32 | /// 33 | protected override object GetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, System.Globalization.CultureInfo culture) { 34 | return propertyInfo.GetValue(target, System.Reflection.BindingFlags.Default, null, null, culture); 35 | } 36 | 37 | /// 38 | /// SetPropertyValue 39 | /// 40 | protected override void SetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, object value, System.Globalization.CultureInfo culture) { 41 | propertyInfo.SetValue(target, value, System.Reflection.BindingFlags.Default, null, null, culture); 42 | } 43 | 44 | /// 45 | /// CreateDelegate 46 | /// 47 | protected override System.Delegate CreateDelegate(System.Type delegateType, object target, string handler) { 48 | return ((System.Delegate)(target.GetType().InvokeMember("_CreateDelegate", (System.Reflection.BindingFlags.InvokeMethod 49 | | (System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)), null, target, new object[] { 50 | delegateType, 51 | handler}, null))); 52 | } 53 | 54 | /// 55 | /// AddEventHandler 56 | /// 57 | protected override void AddEventHandler(System.Reflection.EventInfo eventInfo, object target, System.Delegate handler) { 58 | eventInfo.AddEventHandler(target, handler); 59 | } 60 | } 61 | } 62 | 63 | -------------------------------------------------------------------------------- /DynaWin/obj/Debug/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Debug/MainWindow.baml -------------------------------------------------------------------------------- /DynaWin/obj/Debug/MainWindow.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "801FCF8E666028F751A6C12B267AEEA55F49F0ACDD59313156F5EE25947D302B" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // This code was generated by a tool. 5 | // Runtime Version:4.0.30319.42000 6 | // 7 | // Changes to this file may cause incorrect behavior and will be lost if 8 | // the code is regenerated. 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using DynaWin; 13 | using ModernWpf; 14 | using ModernWpf.Controls; 15 | using ModernWpf.Controls.Primitives; 16 | using ModernWpf.DesignTime; 17 | using ModernWpf.Markup; 18 | using ModernWpf.Media.Animation; 19 | using System; 20 | using System.Diagnostics; 21 | using System.Windows; 22 | using System.Windows.Automation; 23 | using System.Windows.Controls; 24 | using System.Windows.Controls.Primitives; 25 | using System.Windows.Data; 26 | using System.Windows.Documents; 27 | using System.Windows.Ink; 28 | using System.Windows.Input; 29 | using System.Windows.Markup; 30 | using System.Windows.Media; 31 | using System.Windows.Media.Animation; 32 | using System.Windows.Media.Effects; 33 | using System.Windows.Media.Imaging; 34 | using System.Windows.Media.Media3D; 35 | using System.Windows.Media.TextFormatting; 36 | using System.Windows.Navigation; 37 | using System.Windows.Shapes; 38 | using System.Windows.Shell; 39 | 40 | 41 | namespace DynaWin { 42 | 43 | 44 | /// 45 | /// MainWindow 46 | /// 47 | public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { 48 | 49 | private bool _contentLoaded; 50 | 51 | /// 52 | /// InitializeComponent 53 | /// 54 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 55 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 56 | public void InitializeComponent() { 57 | if (_contentLoaded) { 58 | return; 59 | } 60 | _contentLoaded = true; 61 | System.Uri resourceLocater = new System.Uri("/DynaWin;component/mainwindow.xaml", System.UriKind.Relative); 62 | 63 | #line 1 "..\..\MainWindow.xaml" 64 | System.Windows.Application.LoadComponent(this, resourceLocater); 65 | 66 | #line default 67 | #line hidden 68 | } 69 | 70 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 71 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 72 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 73 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] 74 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] 75 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] 76 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { 77 | switch (connectionId) 78 | { 79 | case 1: 80 | 81 | #line 13 "..\..\MainWindow.xaml" 82 | ((DynaWin.MainWindow)(target)).Closing += new System.ComponentModel.CancelEventHandler(this.Window_Closing); 83 | 84 | #line default 85 | #line hidden 86 | return; 87 | } 88 | this._contentLoaded = true; 89 | } 90 | } 91 | } 92 | 93 | -------------------------------------------------------------------------------- /DynaWin/obj/Debug/MainWindow.g.i.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "801FCF8E666028F751A6C12B267AEEA55F49F0ACDD59313156F5EE25947D302B" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // This code was generated by a tool. 5 | // Runtime Version:4.0.30319.42000 6 | // 7 | // Changes to this file may cause incorrect behavior and will be lost if 8 | // the code is regenerated. 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using DynaWin; 13 | using ModernWpf; 14 | using ModernWpf.Controls; 15 | using ModernWpf.Controls.Primitives; 16 | using ModernWpf.DesignTime; 17 | using ModernWpf.Markup; 18 | using ModernWpf.Media.Animation; 19 | using System; 20 | using System.Diagnostics; 21 | using System.Windows; 22 | using System.Windows.Automation; 23 | using System.Windows.Controls; 24 | using System.Windows.Controls.Primitives; 25 | using System.Windows.Data; 26 | using System.Windows.Documents; 27 | using System.Windows.Ink; 28 | using System.Windows.Input; 29 | using System.Windows.Markup; 30 | using System.Windows.Media; 31 | using System.Windows.Media.Animation; 32 | using System.Windows.Media.Effects; 33 | using System.Windows.Media.Imaging; 34 | using System.Windows.Media.Media3D; 35 | using System.Windows.Media.TextFormatting; 36 | using System.Windows.Navigation; 37 | using System.Windows.Shapes; 38 | using System.Windows.Shell; 39 | 40 | 41 | namespace DynaWin { 42 | 43 | 44 | /// 45 | /// MainWindow 46 | /// 47 | public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { 48 | 49 | private bool _contentLoaded; 50 | 51 | /// 52 | /// InitializeComponent 53 | /// 54 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 55 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 56 | public void InitializeComponent() { 57 | if (_contentLoaded) { 58 | return; 59 | } 60 | _contentLoaded = true; 61 | System.Uri resourceLocater = new System.Uri("/DynaWin;component/mainwindow.xaml", System.UriKind.Relative); 62 | 63 | #line 1 "..\..\MainWindow.xaml" 64 | System.Windows.Application.LoadComponent(this, resourceLocater); 65 | 66 | #line default 67 | #line hidden 68 | } 69 | 70 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 71 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 72 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 73 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] 74 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] 75 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] 76 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { 77 | switch (connectionId) 78 | { 79 | case 1: 80 | 81 | #line 13 "..\..\MainWindow.xaml" 82 | ((DynaWin.MainWindow)(target)).Closing += new System.ComponentModel.CancelEventHandler(this.Window_Closing); 83 | 84 | #line default 85 | #line hidden 86 | return; 87 | } 88 | this._contentLoaded = true; 89 | } 90 | } 91 | } 92 | 93 | -------------------------------------------------------------------------------- /DynaWin/obj/Debug/PreferencesWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Debug/PreferencesWindow.baml -------------------------------------------------------------------------------- /DynaWin/obj/Debug/SettingsWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Debug/SettingsWindow.baml -------------------------------------------------------------------------------- /DynaWin/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /DynaWin/obj/Debug/TimePicker.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Debug/TimePicker.baml -------------------------------------------------------------------------------- /DynaWin/obj/Debug/TimePicker.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\TimePicker.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "B95C532546723D0D25D483382EE994E97ADD390057A8EE162F4D36484B107BFD" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // This code was generated by a tool. 5 | // Runtime Version:4.0.30319.42000 6 | // 7 | // Changes to this file may cause incorrect behavior and will be lost if 8 | // the code is regenerated. 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using DynaWin; 13 | using ModernWpf; 14 | using ModernWpf.Controls; 15 | using ModernWpf.Controls.Primitives; 16 | using ModernWpf.DesignTime; 17 | using ModernWpf.Markup; 18 | using ModernWpf.Media.Animation; 19 | using System; 20 | using System.Diagnostics; 21 | using System.Windows; 22 | using System.Windows.Automation; 23 | using System.Windows.Controls; 24 | using System.Windows.Controls.Primitives; 25 | using System.Windows.Data; 26 | using System.Windows.Documents; 27 | using System.Windows.Ink; 28 | using System.Windows.Input; 29 | using System.Windows.Markup; 30 | using System.Windows.Media; 31 | using System.Windows.Media.Animation; 32 | using System.Windows.Media.Effects; 33 | using System.Windows.Media.Imaging; 34 | using System.Windows.Media.Media3D; 35 | using System.Windows.Media.TextFormatting; 36 | using System.Windows.Navigation; 37 | using System.Windows.Shapes; 38 | using System.Windows.Shell; 39 | 40 | 41 | namespace DynaWin { 42 | 43 | 44 | /// 45 | /// TimePicker 46 | /// 47 | public partial class TimePicker : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { 48 | 49 | 50 | #line 10 "..\..\TimePicker.xaml" 51 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 52 | internal System.Windows.Controls.ComboBox Hours; 53 | 54 | #line default 55 | #line hidden 56 | 57 | 58 | #line 11 "..\..\TimePicker.xaml" 59 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 60 | internal System.Windows.Controls.ComboBox AMPM; 61 | 62 | #line default 63 | #line hidden 64 | 65 | 66 | #line 12 "..\..\TimePicker.xaml" 67 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 68 | internal System.Windows.Controls.ComboBox Minutes; 69 | 70 | #line default 71 | #line hidden 72 | 73 | private bool _contentLoaded; 74 | 75 | /// 76 | /// InitializeComponent 77 | /// 78 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 79 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 80 | public void InitializeComponent() { 81 | if (_contentLoaded) { 82 | return; 83 | } 84 | _contentLoaded = true; 85 | System.Uri resourceLocater = new System.Uri("/DynaWin;component/timepicker.xaml", System.UriKind.Relative); 86 | 87 | #line 1 "..\..\TimePicker.xaml" 88 | System.Windows.Application.LoadComponent(this, resourceLocater); 89 | 90 | #line default 91 | #line hidden 92 | } 93 | 94 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 95 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 96 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 97 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] 98 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] 99 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] 100 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { 101 | switch (connectionId) 102 | { 103 | case 1: 104 | this.Hours = ((System.Windows.Controls.ComboBox)(target)); 105 | 106 | #line 10 "..\..\TimePicker.xaml" 107 | this.Hours.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.Hours_SelectionChanged); 108 | 109 | #line default 110 | #line hidden 111 | return; 112 | case 2: 113 | this.AMPM = ((System.Windows.Controls.ComboBox)(target)); 114 | 115 | #line 11 "..\..\TimePicker.xaml" 116 | this.AMPM.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.AMPM_SelectionChanged); 117 | 118 | #line default 119 | #line hidden 120 | return; 121 | case 3: 122 | this.Minutes = ((System.Windows.Controls.ComboBox)(target)); 123 | 124 | #line 12 "..\..\TimePicker.xaml" 125 | this.Minutes.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.Minutes_SelectionChanged); 126 | 127 | #line default 128 | #line hidden 129 | return; 130 | } 131 | this._contentLoaded = true; 132 | } 133 | } 134 | } 135 | 136 | -------------------------------------------------------------------------------- /DynaWin/obj/Debug/TimePicker.g.i.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\TimePicker.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "B95C532546723D0D25D483382EE994E97ADD390057A8EE162F4D36484B107BFD" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // This code was generated by a tool. 5 | // Runtime Version:4.0.30319.42000 6 | // 7 | // Changes to this file may cause incorrect behavior and will be lost if 8 | // the code is regenerated. 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using DynaWin; 13 | using ModernWpf; 14 | using ModernWpf.Controls; 15 | using ModernWpf.Controls.Primitives; 16 | using ModernWpf.DesignTime; 17 | using ModernWpf.Markup; 18 | using ModernWpf.Media.Animation; 19 | using System; 20 | using System.Diagnostics; 21 | using System.Windows; 22 | using System.Windows.Automation; 23 | using System.Windows.Controls; 24 | using System.Windows.Controls.Primitives; 25 | using System.Windows.Data; 26 | using System.Windows.Documents; 27 | using System.Windows.Ink; 28 | using System.Windows.Input; 29 | using System.Windows.Markup; 30 | using System.Windows.Media; 31 | using System.Windows.Media.Animation; 32 | using System.Windows.Media.Effects; 33 | using System.Windows.Media.Imaging; 34 | using System.Windows.Media.Media3D; 35 | using System.Windows.Media.TextFormatting; 36 | using System.Windows.Navigation; 37 | using System.Windows.Shapes; 38 | using System.Windows.Shell; 39 | 40 | 41 | namespace DynaWin { 42 | 43 | 44 | /// 45 | /// TimePicker 46 | /// 47 | public partial class TimePicker : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { 48 | 49 | 50 | #line 10 "..\..\TimePicker.xaml" 51 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 52 | internal System.Windows.Controls.ComboBox Hours; 53 | 54 | #line default 55 | #line hidden 56 | 57 | 58 | #line 11 "..\..\TimePicker.xaml" 59 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 60 | internal System.Windows.Controls.ComboBox AMPM; 61 | 62 | #line default 63 | #line hidden 64 | 65 | 66 | #line 12 "..\..\TimePicker.xaml" 67 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 68 | internal System.Windows.Controls.ComboBox Minutes; 69 | 70 | #line default 71 | #line hidden 72 | 73 | private bool _contentLoaded; 74 | 75 | /// 76 | /// InitializeComponent 77 | /// 78 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 79 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 80 | public void InitializeComponent() { 81 | if (_contentLoaded) { 82 | return; 83 | } 84 | _contentLoaded = true; 85 | System.Uri resourceLocater = new System.Uri("/DynaWin;component/timepicker.xaml", System.UriKind.Relative); 86 | 87 | #line 1 "..\..\TimePicker.xaml" 88 | System.Windows.Application.LoadComponent(this, resourceLocater); 89 | 90 | #line default 91 | #line hidden 92 | } 93 | 94 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 95 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 96 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 97 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] 98 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] 99 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] 100 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { 101 | switch (connectionId) 102 | { 103 | case 1: 104 | this.Hours = ((System.Windows.Controls.ComboBox)(target)); 105 | 106 | #line 10 "..\..\TimePicker.xaml" 107 | this.Hours.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.Hours_SelectionChanged); 108 | 109 | #line default 110 | #line hidden 111 | return; 112 | case 2: 113 | this.AMPM = ((System.Windows.Controls.ComboBox)(target)); 114 | 115 | #line 11 "..\..\TimePicker.xaml" 116 | this.AMPM.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.AMPM_SelectionChanged); 117 | 118 | #line default 119 | #line hidden 120 | return; 121 | case 3: 122 | this.Minutes = ((System.Windows.Controls.ComboBox)(target)); 123 | 124 | #line 12 "..\..\TimePicker.xaml" 125 | this.Minutes.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.Minutes_SelectionChanged); 126 | 127 | #line default 128 | #line hidden 129 | return; 130 | } 131 | this._contentLoaded = true; 132 | } 133 | } 134 | } 135 | 136 | -------------------------------------------------------------------------------- /DynaWin/obj/Debug/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Debug\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /DynaWin/obj/DynaWin.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "C:\\Users\\fligh\\source\\repos\\DynaWin\\DynaWin\\DynaWin.csproj": {} 5 | }, 6 | "projects": { 7 | "C:\\Users\\fligh\\source\\repos\\DynaWin\\DynaWin\\DynaWin.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "C:\\Users\\fligh\\source\\repos\\DynaWin\\DynaWin\\DynaWin.csproj", 11 | "projectName": "DynaWin", 12 | "projectPath": "C:\\Users\\fligh\\source\\repos\\DynaWin\\DynaWin\\DynaWin.csproj", 13 | "packagesPath": "C:\\Users\\fligh\\.nuget\\packages\\", 14 | "outputPath": "C:\\Users\\fligh\\source\\repos\\DynaWin\\DynaWin\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "skipContentFileWrite": true, 17 | "fallbackFolders": [ 18 | "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" 19 | ], 20 | "configFilePaths": [ 21 | "C:\\Users\\fligh\\AppData\\Roaming\\NuGet\\NuGet.Config", 22 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", 23 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 24 | ], 25 | "originalTargetFrameworks": [ 26 | "net48" 27 | ], 28 | "sources": { 29 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 30 | "https://api.nuget.org/v3/index.json": {} 31 | }, 32 | "frameworks": { 33 | "net48": { 34 | "projectReferences": {} 35 | } 36 | } 37 | }, 38 | "frameworks": { 39 | "net48": { 40 | "dependencies": { 41 | "Microsoft.Toolkit.Uwp.Notifications": { 42 | "target": "Package", 43 | "version": "[7.1.2, )" 44 | }, 45 | "ModernWpfUI": { 46 | "target": "Package", 47 | "version": "[0.9.4, )" 48 | } 49 | } 50 | } 51 | }, 52 | "runtimes": { 53 | "win": { 54 | "#import": [] 55 | }, 56 | "win-x64": { 57 | "#import": [] 58 | }, 59 | "win-x86": { 60 | "#import": [] 61 | } 62 | } 63 | } 64 | } 65 | } -------------------------------------------------------------------------------- /DynaWin/obj/DynaWin.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\fligh\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages 9 | PackageReference 10 | 6.0.0 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /DynaWin/obj/DynaWin.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DynaWin/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] 5 | -------------------------------------------------------------------------------- /DynaWin/obj/Release/AddDynamicThemeTask.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Release/AddDynamicThemeTask.baml -------------------------------------------------------------------------------- /DynaWin/obj/Release/AddDynamicWallpaperTask.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Release/AddDynamicWallpaperTask.baml -------------------------------------------------------------------------------- /DynaWin/obj/Release/App.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Release/App.baml -------------------------------------------------------------------------------- /DynaWin/obj/Release/App.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "E80C23CCD8970B5CA79AAD69253593F9E82D7290F898CBA40B872858BF994271" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // This code was generated by a tool. 5 | // Runtime Version:4.0.30319.42000 6 | // 7 | // Changes to this file may cause incorrect behavior and will be lost if 8 | // the code is regenerated. 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using DynaWin; 13 | using ModernWpf; 14 | using ModernWpf.Controls; 15 | using ModernWpf.Controls.Primitives; 16 | using ModernWpf.DesignTime; 17 | using ModernWpf.Markup; 18 | using ModernWpf.Media.Animation; 19 | using System; 20 | using System.Diagnostics; 21 | using System.Windows; 22 | using System.Windows.Automation; 23 | using System.Windows.Controls; 24 | using System.Windows.Controls.Primitives; 25 | using System.Windows.Data; 26 | using System.Windows.Documents; 27 | using System.Windows.Ink; 28 | using System.Windows.Input; 29 | using System.Windows.Markup; 30 | using System.Windows.Media; 31 | using System.Windows.Media.Animation; 32 | using System.Windows.Media.Effects; 33 | using System.Windows.Media.Imaging; 34 | using System.Windows.Media.Media3D; 35 | using System.Windows.Media.TextFormatting; 36 | using System.Windows.Navigation; 37 | using System.Windows.Shapes; 38 | using System.Windows.Shell; 39 | 40 | 41 | namespace DynaWin { 42 | 43 | 44 | /// 45 | /// App 46 | /// 47 | public partial class App : System.Windows.Application { 48 | 49 | private bool _contentLoaded; 50 | 51 | /// 52 | /// InitializeComponent 53 | /// 54 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 55 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 56 | public void InitializeComponent() { 57 | if (_contentLoaded) { 58 | return; 59 | } 60 | _contentLoaded = true; 61 | 62 | #line 7 "..\..\App.xaml" 63 | this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative); 64 | 65 | #line default 66 | #line hidden 67 | System.Uri resourceLocater = new System.Uri("/DynaWin;component/app.xaml", System.UriKind.Relative); 68 | 69 | #line 1 "..\..\App.xaml" 70 | System.Windows.Application.LoadComponent(this, resourceLocater); 71 | 72 | #line default 73 | #line hidden 74 | } 75 | 76 | /// 77 | /// Application Entry Point. 78 | /// 79 | [System.STAThreadAttribute()] 80 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 81 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 82 | public static void Main() { 83 | DynaWin.App app = new DynaWin.App(); 84 | app.InitializeComponent(); 85 | app.Run(); 86 | } 87 | } 88 | } 89 | 90 | -------------------------------------------------------------------------------- /DynaWin/obj/Release/App.g.i.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "E80C23CCD8970B5CA79AAD69253593F9E82D7290F898CBA40B872858BF994271" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // This code was generated by a tool. 5 | // Runtime Version:4.0.30319.42000 6 | // 7 | // Changes to this file may cause incorrect behavior and will be lost if 8 | // the code is regenerated. 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using DynaWin; 13 | using ModernWpf; 14 | using ModernWpf.Controls; 15 | using ModernWpf.Controls.Primitives; 16 | using ModernWpf.DesignTime; 17 | using ModernWpf.Markup; 18 | using ModernWpf.Media.Animation; 19 | using System; 20 | using System.Diagnostics; 21 | using System.Windows; 22 | using System.Windows.Automation; 23 | using System.Windows.Controls; 24 | using System.Windows.Controls.Primitives; 25 | using System.Windows.Data; 26 | using System.Windows.Documents; 27 | using System.Windows.Ink; 28 | using System.Windows.Input; 29 | using System.Windows.Markup; 30 | using System.Windows.Media; 31 | using System.Windows.Media.Animation; 32 | using System.Windows.Media.Effects; 33 | using System.Windows.Media.Imaging; 34 | using System.Windows.Media.Media3D; 35 | using System.Windows.Media.TextFormatting; 36 | using System.Windows.Navigation; 37 | using System.Windows.Shapes; 38 | using System.Windows.Shell; 39 | 40 | 41 | namespace DynaWin { 42 | 43 | 44 | /// 45 | /// App 46 | /// 47 | public partial class App : System.Windows.Application { 48 | 49 | private bool _contentLoaded; 50 | 51 | /// 52 | /// InitializeComponent 53 | /// 54 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 55 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 56 | public void InitializeComponent() { 57 | if (_contentLoaded) { 58 | return; 59 | } 60 | _contentLoaded = true; 61 | 62 | #line 7 "..\..\App.xaml" 63 | this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative); 64 | 65 | #line default 66 | #line hidden 67 | System.Uri resourceLocater = new System.Uri("/DynaWin;component/app.xaml", System.UriKind.Relative); 68 | 69 | #line 1 "..\..\App.xaml" 70 | System.Windows.Application.LoadComponent(this, resourceLocater); 71 | 72 | #line default 73 | #line hidden 74 | } 75 | 76 | /// 77 | /// Application Entry Point. 78 | /// 79 | [System.STAThreadAttribute()] 80 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 81 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 82 | public static void Main() { 83 | DynaWin.App app = new DynaWin.App(); 84 | app.InitializeComponent(); 85 | app.Run(); 86 | } 87 | } 88 | } 89 | 90 | -------------------------------------------------------------------------------- /DynaWin/obj/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /DynaWin/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Release/DynaWin.Properties.Resources.resources -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Release/DynaWin.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Release/DynaWin.csproj.CopyComplete -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 8b9a692c4d4e0a90fe253125f5c41b64b5752a31 2 | -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Release/DynaWin.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- 1 | d2483497eb9b13c4563d22cbabd4e8c51d8e9682 2 | -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Release/DynaWin.exe -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Release/DynaWin.g.resources -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Release/DynaWin.pdb -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin_MarkupCompile.cache: -------------------------------------------------------------------------------- 1 | DynaWin 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | C:\Users\fligh\source\repos\DynaWin\DynaWin\obj\Release\ 8 | DynaWin 9 | none 10 | false 11 | TRACE 12 | C:\Users\fligh\source\repos\DynaWin\DynaWin\App.xaml 13 | 61926805382 14 | 15 | 11-1796028224 16 | 215601286866 17 | AddDynamicThemeTask.xaml;AddDynamicWallpaperTask.xaml;MainWindow.xaml;PreferencesWindow.xaml;SettingsWindow.xaml;TimePicker.xaml; 18 | 19 | False 20 | 21 | -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin_MarkupCompile.i.cache: -------------------------------------------------------------------------------- 1 | DynaWin 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | C:\Users\fligh\source\repos\DynaWin\DynaWin\obj\Release\ 8 | DynaWin 9 | none 10 | false 11 | TRACE 12 | C:\Users\fligh\source\repos\DynaWin\DynaWin\App.xaml 13 | 61926805382 14 | 15 | 121936796489 16 | 215601286866 17 | AddDynamicThemeTask.xaml;AddDynamicWallpaperTask.xaml;MainWindow.xaml;PreferencesWindow.xaml;SettingsWindow.xaml;TimePicker.xaml; 18 | 19 | True 20 | 21 | -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 |  2 | FC:\Users\fligh\source\repos\DynaWin\DynaWin\App.xaml;; 3 | FC:\Users\fligh\source\repos\DynaWin\DynaWin\AddDynamicThemeTask.xaml;; 4 | FC:\Users\fligh\source\repos\DynaWin\DynaWin\AddDynamicWallpaperTask.xaml;; 5 | FC:\Users\fligh\source\repos\DynaWin\DynaWin\MainWindow.xaml;; 6 | FC:\Users\fligh\source\repos\DynaWin\DynaWin\PreferencesWindow.xaml;; 7 | FC:\Users\fligh\source\repos\DynaWin\DynaWin\SettingsWindow.xaml;; 8 | FC:\Users\fligh\source\repos\DynaWin\DynaWin\TimePicker.xaml;; 9 | 10 | -------------------------------------------------------------------------------- /DynaWin/obj/Release/DynaWin_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 |  2 | FC:\Users\fligh\source\repos\DynaWin\DynaWin\App.xaml;; 3 | FC:\Users\fligh\source\repos\DynaWin\DynaWin\AddDynamicThemeTask.xaml;; 4 | FC:\Users\fligh\source\repos\DynaWin\DynaWin\AddDynamicWallpaperTask.xaml;; 5 | FC:\Users\fligh\source\repos\DynaWin\DynaWin\MainWindow.xaml;; 6 | FC:\Users\fligh\source\repos\DynaWin\DynaWin\PreferencesWindow.xaml;; 7 | FC:\Users\fligh\source\repos\DynaWin\DynaWin\SettingsWindow.xaml;; 8 | FC:\Users\fligh\source\repos\DynaWin\DynaWin\TimePicker.xaml;; 9 | 10 | -------------------------------------------------------------------------------- /DynaWin/obj/Release/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Release/MainWindow.baml -------------------------------------------------------------------------------- /DynaWin/obj/Release/MainWindow.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "801FCF8E666028F751A6C12B267AEEA55F49F0ACDD59313156F5EE25947D302B" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // This code was generated by a tool. 5 | // Runtime Version:4.0.30319.42000 6 | // 7 | // Changes to this file may cause incorrect behavior and will be lost if 8 | // the code is regenerated. 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using DynaWin; 13 | using ModernWpf; 14 | using ModernWpf.Controls; 15 | using ModernWpf.Controls.Primitives; 16 | using ModernWpf.DesignTime; 17 | using ModernWpf.Markup; 18 | using ModernWpf.Media.Animation; 19 | using System; 20 | using System.Diagnostics; 21 | using System.Windows; 22 | using System.Windows.Automation; 23 | using System.Windows.Controls; 24 | using System.Windows.Controls.Primitives; 25 | using System.Windows.Data; 26 | using System.Windows.Documents; 27 | using System.Windows.Ink; 28 | using System.Windows.Input; 29 | using System.Windows.Markup; 30 | using System.Windows.Media; 31 | using System.Windows.Media.Animation; 32 | using System.Windows.Media.Effects; 33 | using System.Windows.Media.Imaging; 34 | using System.Windows.Media.Media3D; 35 | using System.Windows.Media.TextFormatting; 36 | using System.Windows.Navigation; 37 | using System.Windows.Shapes; 38 | using System.Windows.Shell; 39 | 40 | 41 | namespace DynaWin { 42 | 43 | 44 | /// 45 | /// MainWindow 46 | /// 47 | public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { 48 | 49 | private bool _contentLoaded; 50 | 51 | /// 52 | /// InitializeComponent 53 | /// 54 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 55 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 56 | public void InitializeComponent() { 57 | if (_contentLoaded) { 58 | return; 59 | } 60 | _contentLoaded = true; 61 | System.Uri resourceLocater = new System.Uri("/DynaWin;component/mainwindow.xaml", System.UriKind.Relative); 62 | 63 | #line 1 "..\..\MainWindow.xaml" 64 | System.Windows.Application.LoadComponent(this, resourceLocater); 65 | 66 | #line default 67 | #line hidden 68 | } 69 | 70 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 71 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 72 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 73 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] 74 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] 75 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] 76 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { 77 | switch (connectionId) 78 | { 79 | case 1: 80 | 81 | #line 13 "..\..\MainWindow.xaml" 82 | ((DynaWin.MainWindow)(target)).Closing += new System.ComponentModel.CancelEventHandler(this.Window_Closing); 83 | 84 | #line default 85 | #line hidden 86 | return; 87 | } 88 | this._contentLoaded = true; 89 | } 90 | } 91 | } 92 | 93 | -------------------------------------------------------------------------------- /DynaWin/obj/Release/MainWindow.g.i.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "801FCF8E666028F751A6C12B267AEEA55F49F0ACDD59313156F5EE25947D302B" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // This code was generated by a tool. 5 | // Runtime Version:4.0.30319.42000 6 | // 7 | // Changes to this file may cause incorrect behavior and will be lost if 8 | // the code is regenerated. 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using DynaWin; 13 | using ModernWpf; 14 | using ModernWpf.Controls; 15 | using ModernWpf.Controls.Primitives; 16 | using ModernWpf.DesignTime; 17 | using ModernWpf.Markup; 18 | using ModernWpf.Media.Animation; 19 | using System; 20 | using System.Diagnostics; 21 | using System.Windows; 22 | using System.Windows.Automation; 23 | using System.Windows.Controls; 24 | using System.Windows.Controls.Primitives; 25 | using System.Windows.Data; 26 | using System.Windows.Documents; 27 | using System.Windows.Ink; 28 | using System.Windows.Input; 29 | using System.Windows.Markup; 30 | using System.Windows.Media; 31 | using System.Windows.Media.Animation; 32 | using System.Windows.Media.Effects; 33 | using System.Windows.Media.Imaging; 34 | using System.Windows.Media.Media3D; 35 | using System.Windows.Media.TextFormatting; 36 | using System.Windows.Navigation; 37 | using System.Windows.Shapes; 38 | using System.Windows.Shell; 39 | 40 | 41 | namespace DynaWin { 42 | 43 | 44 | /// 45 | /// MainWindow 46 | /// 47 | public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { 48 | 49 | private bool _contentLoaded; 50 | 51 | /// 52 | /// InitializeComponent 53 | /// 54 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 55 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 56 | public void InitializeComponent() { 57 | if (_contentLoaded) { 58 | return; 59 | } 60 | _contentLoaded = true; 61 | System.Uri resourceLocater = new System.Uri("/DynaWin;component/mainwindow.xaml", System.UriKind.Relative); 62 | 63 | #line 1 "..\..\MainWindow.xaml" 64 | System.Windows.Application.LoadComponent(this, resourceLocater); 65 | 66 | #line default 67 | #line hidden 68 | } 69 | 70 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 71 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 72 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 73 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] 74 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] 75 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] 76 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { 77 | switch (connectionId) 78 | { 79 | case 1: 80 | 81 | #line 13 "..\..\MainWindow.xaml" 82 | ((DynaWin.MainWindow)(target)).Closing += new System.ComponentModel.CancelEventHandler(this.Window_Closing); 83 | 84 | #line default 85 | #line hidden 86 | return; 87 | } 88 | this._contentLoaded = true; 89 | } 90 | } 91 | } 92 | 93 | -------------------------------------------------------------------------------- /DynaWin/obj/Release/PreferencesWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Release/PreferencesWindow.baml -------------------------------------------------------------------------------- /DynaWin/obj/Release/SettingsWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Release/SettingsWindow.baml -------------------------------------------------------------------------------- /DynaWin/obj/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /DynaWin/obj/Release/TimePicker.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin/obj/Release/TimePicker.baml -------------------------------------------------------------------------------- /DynaWin/obj/Release/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Release\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /DynaWin/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "gETK7jj+tv2hc/BxLZcZI8NHmVHSRdkuKOPsQ2qjwbMg8kufMDIeXkeot7KmCdicvAThxi7VdTi5o2Zbl9C9FQ==", 4 | "success": true, 5 | "projectFilePath": "C:\\Users\\fligh\\source\\repos\\DynaWin\\DynaWin\\DynaWin.csproj", 6 | "expectedPackageFiles": [ 7 | "C:\\Users\\fligh\\.nuget\\packages\\microsoft.netframework.referenceassemblies\\1.0.0\\microsoft.netframework.referenceassemblies.1.0.0.nupkg.sha512", 8 | "C:\\Users\\fligh\\.nuget\\packages\\microsoft.netframework.referenceassemblies.net48\\1.0.0\\microsoft.netframework.referenceassemblies.net48.1.0.0.nupkg.sha512", 9 | "C:\\Users\\fligh\\.nuget\\packages\\microsoft.toolkit.uwp.notifications\\7.1.2\\microsoft.toolkit.uwp.notifications.7.1.2.nupkg.sha512", 10 | "C:\\Users\\fligh\\.nuget\\packages\\microsoft.windows.sdk.contracts\\10.0.19041.1\\microsoft.windows.sdk.contracts.10.0.19041.1.nupkg.sha512", 11 | "C:\\Users\\fligh\\.nuget\\packages\\modernwpfui\\0.9.4\\modernwpfui.0.9.4.nupkg.sha512", 12 | "C:\\Users\\fligh\\.nuget\\packages\\system.runtime.windowsruntime\\4.6.0\\system.runtime.windowsruntime.4.6.0.nupkg.sha512", 13 | "C:\\Users\\fligh\\.nuget\\packages\\system.runtime.windowsruntime.ui.xaml\\4.6.0\\system.runtime.windowsruntime.ui.xaml.4.6.0.nupkg.sha512", 14 | "C:\\Users\\fligh\\.nuget\\packages\\system.valuetuple\\4.5.0\\system.valuetuple.4.5.0.nupkg.sha512" 15 | ], 16 | "logs": [] 17 | } -------------------------------------------------------------------------------- /DynaWin_1.1.1_Setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/DynaWin_1.1.1_Setup.exe -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020-present ClickPhase 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- 1 | DynaWin incorporates material from third parties. As such, their respective licenses and/or notices are included in this file. 2 | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 3 | ModernWPF UI Library 4 | Source: https://github.com/Kinnara/ModernWpf 5 | 6 | MIT License 7 | 8 | Copyright (c) 2019 Yimeng Wu 9 | 10 | Permission is hereby granted, free of charge, to any person obtaining a copy 11 | of this software and associated documentation files (the "Software"), to deal 12 | in the Software without restriction, including without limitation the rights 13 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 14 | copies of the Software, and to permit persons to whom the Software is 15 | furnished to do so, subject to the following conditions: 16 | 17 | The above copyright notice and this permission notice shall be included in all 18 | copies or substantial portions of the Software. 19 | 20 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 21 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 22 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 23 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 24 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 25 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 26 | SOFTWARE. 27 | 28 | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 29 | 30 | The 2 background images for DynaWin are part of the Google Now backgrounds, and are made by Brent Couchman. 31 | Source: 32 | https://www.flickr.com/photos/brentcouchman/8775428047/ 33 | and 34 | https://www.flickr.com/photos/brentcouchman/8775428119/ 35 | 36 | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 37 | 38 | Some icons in DynaWin are part of the Fluency Icons made by Icons8. 39 | Source: https://icons8.com/icons/fluency 40 | 41 | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------- /PRIVACYPOLICY.md: -------------------------------------------------------------------------------- 1 | # Privacy Policy 2 | 3 | By using the app "DynaWin" you are consenting to our policies regarding the collection, use and disclosure of personal information set out in this privacy policy. 4 | 5 | ## Collection of Personal Information 6 | 7 | We do not collect, store, use or share any information, personal or otherwise. 8 | 9 | ## Email 10 | 11 | If you email the developer for support or other feedback, the emails with email addresses will be retained for quality assurance purposes. The email addresses will be used only to reply to the concerns or suggestions raised and will never be used for any marketing purpose. 12 | 13 | ## Disclosure of Personal Information 14 | 15 | We will not disclose your information to any third party except if you expressly consent or where required by law. 16 | 17 | ## Contacting Us 18 | 19 | If you have any questions regarding this privacy policy, you can email clickphasehelp@gmail.com 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DynaWin 2 | 3 | ### Project site: https://clickphase.vercel.app/dynawin 4 | ### Demo video: https://www.youtube.com/watch?v=J0iyzZG5tXc 5 | 6 | DynaWin - Dynamic Desktop for Windows 10 and Windows 11 7 | 8 | ## About DynaWin 9 | 10 | DynaWin is a utility that allows the Windows desktop to change dynamically. 11 | 12 | ## Before you install... 13 | To run on startup, DynaWin creates a batch script in the user's startup folder. However, some antiviruses may flag this as unsafe. If this is the case, please add DynaWin and the batch script, located at **%APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup\StartDynaWin.bat** to your antivirus's exclusions list. 14 | 15 | Some antiviruses and/or firewalls may block DynaWin from accessing the internet, causing the auto-update system to not work. In this case, please add DynaWin to your firewall's or antivrus's exclusion list. 16 | 17 | ## Features 18 | 19 | ### Dynamic Theme: 20 | Switch your Windows theme or app theme based on time. 21 | 22 | #### Automatic theme switching 23 | 24 | DynaWin can automatically switch the Windows theme at specific timings. For example, you can automatically switch Windows to Dark theme at night, so that it is easier on the eyes. 25 | 26 | #### Choose which mode to switch 27 | You can configure DynaWin to switch only the app or system theme, or both. This gives you more control over DynaWin's behaviour and allows DynaWin to better cater to your needs. 28 | 29 | ![Dynamic Theme](https://imgur.com/Z8F3AtU.png) 30 | 31 | ### Dynamic Wallpaper 32 | Switch your desktop wallpaper at certain triggers. 33 | 34 | #### Automatic switching of desktop wallpaper 35 | DynaWin can automatically switch your wallpaper at specific triggers. For example, you can configure DynaWin to switch your wallpaper at night, to make it easier on the eyes. 36 | 37 | #### Choose when your wallpaper should be changed 38 | DynaWin can change your wallpaper either based on the time, or based on your battery percentage, to remind you when your battery is running low, or remind you to unplug your charger. 39 | 40 | ![Dynamic Wallpaper](https://imgur.com/G82mVtr.png) 41 | 42 | ### Automatic Updates 43 | DynaWin also automatically notifies you when there is a new update. This is to ensure that you have the latest version of DynaWin at all times so that you can have the latest features available. 44 | 45 | ## Compatibility 46 | DynaWin works with Windows 10 and Windows 11. I have not tested if DynaWin works with Windows 8.1 or Windows 7, so if you are on those versions of Windows, use at your own risk. DynaWin also requires .NET framework version 4.8 to function properly. 47 | 48 | ## Privacy Policy 49 | DynaWin's privacy policy can be viewed here: [PRIVACYPOLICY.md](https://github.com/Apollo199999999/DynaWin/blob/main/PRIVACYPOLICY.md) 50 | 51 | ## Licensing 52 | DynaWin is licensed under the MIT License. To view the license, visit [LICENSE.TXT](https://github.com/Apollo199999999/DynaWin/blob/main/LICENSE.txt) 53 | 54 | Copyright © 2020-present ClickPhase 55 | -------------------------------------------------------------------------------- /Setup.iss: -------------------------------------------------------------------------------- 1 | 2 | ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! 3 | 4 | #define MyAppName "DynaWin" 5 | #define MyAppVersion "1.1.1" 6 | #define MyAppPublisher "ClickPhase" 7 | #define MyAppURL "https://clickphase.vercel.app/dynawin" 8 | #define MyAppExeName "DynaWin.exe" 9 | 10 | [Setup] 11 | ; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications. 12 | ; (To generate a new GUID, click Tools | Generate GUID inside the IDE.) 13 | AppId={{EC36A1B5-7473-4F76-9D82-61DB6249B906} 14 | AppName={#MyAppName} 15 | AppVersion={#MyAppVersion} 16 | ;AppVerName={#MyAppName} {#MyAppVersion} 17 | DisableWelcomePage=no 18 | DisableDirPage=no 19 | AppPublisher={#MyAppPublisher} 20 | AppPublisherURL={#MyAppURL} 21 | AppSupportURL={#MyAppURL} 22 | AppUpdatesURL={#MyAppURL} 23 | DefaultDirName=C:\Program Files (x86)\DynaWin 24 | DisableProgramGroupPage=yes 25 | LicenseFile=C:\Users\fligh\source\repos\DynaWin\COMBINED-LICENSES.txt 26 | ; Uncomment the following line to run in non administrative install mode (install for current user only.) 27 | ;PrivilegesRequired=lowest 28 | OutputDir=C:\Users\fligh\source\repos\DynaWin 29 | OutputBaseFilename=DynaWin_1.1.1_Setup 30 | SetupIconFile=C:\Users\fligh\source\repos\DynaWin\DynaWin\bin\Release\Resources\icon.ico 31 | Compression=lzma 32 | SolidCompression=yes 33 | WizardStyle=modern 34 | VersionInfoVersion = 1.1.1 35 | UninstallDisplayIcon={app}\DynaWin.exe 36 | UninstallDisplayName=DynaWin 37 | 38 | [Languages] 39 | Name: "english"; MessagesFile: "compiler:Default.isl" 40 | 41 | [Files] 42 | Source: "C:\Users\fligh\source\repos\DynaWin\DynaWin\bin\Release\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion 43 | Source: "C:\Users\fligh\source\repos\DynaWin\DynaWin\bin\Release\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs 44 | 45 | 46 | [Icons] 47 | Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}" 48 | 49 | [UninstallRun] 50 | Filename: "{cmd}"; Parameters: "/C ""taskkill /im {#MyAppExeName} /f /t"; RunOnceId: "Uninstall" 51 | 52 | -------------------------------------------------------------------------------- /Test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/Test.txt -------------------------------------------------------------------------------- /setup.old/DynaWin_1.0.1_Setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/setup.old/DynaWin_1.0.1_Setup.exe -------------------------------------------------------------------------------- /setup.old/DynaWin_1.0.2_Setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/setup.old/DynaWin_1.0.2_Setup.exe -------------------------------------------------------------------------------- /setup.old/DynaWin_1.0.3_Setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/setup.old/DynaWin_1.0.3_Setup.exe -------------------------------------------------------------------------------- /setup.old/DynaWin_1.0_Setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/setup.old/DynaWin_1.0_Setup.exe -------------------------------------------------------------------------------- /setup.old/DynaWin_1.1.0_Setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apollo199999999/DynaWin/81a753899c197cffe017b4c44562f176e85ec738/setup.old/DynaWin_1.1.0_Setup.exe --------------------------------------------------------------------------------