├── .gitattributes ├── .gitignore ├── .gitmodules ├── LICENSE.txt ├── PRIVACY.md ├── README.md ├── packaging ├── .gitignore └── MakeAppX.ps1 ├── resources └── icon │ ├── 150.png │ ├── 16.png │ ├── 20.png │ ├── 24.png │ ├── 28.png │ ├── 32.png │ ├── 44.png │ ├── 48.png │ ├── 50.png │ ├── 64.png │ ├── tasktray16.png │ ├── tasktray20.png │ ├── tasktray24.png │ ├── tasktray28.png │ └── tasktray32.png └── source ├── .editorconfig ├── SylphyHorn.Core ├── Serialization │ ├── DictionaryProvider.cs │ ├── GeneralSettings.cs │ ├── SerializableProperty.cs │ ├── SettingsHost.cs │ └── ShortcutKeySettings.cs └── SylphyHorn.Core.csproj ├── SylphyHorn.Debugging ├── AppXPackageFileList.xml └── SylphyHorn.Debugging.vsdproj ├── SylphyHorn.sln ├── SylphyHorn.sln.DotSettings └── SylphyHorn ├── .assets ├── BadgeLogo.png ├── SplashScreen.png ├── Square150x150Logo.scale-100.png ├── Square150x150Logo.scale-200.png ├── Square44x44Logo.scale-100.png ├── Square44x44Logo.scale-200.png ├── Square44x44Logo.targetsize-24_altform-unplated.png ├── StoreLogo.png ├── Wide310x150Logo.scale-200.png ├── app.green.ico ├── app.white.ico └── tasktray.ico ├── .build └── post-build.ps1 ├── .licenses ├── Livet.txt ├── MetroRadiance.txt ├── MetroTrilithon.txt ├── Open.WinKeyboardHook.txt ├── StatefulModel.txt └── VirtualDesktop.txt ├── Annotations ├── DarkAttribute.cs ├── ElementalAttribute.cs └── LightAttribute.cs ├── App.config ├── Application.Static.cs ├── Application.iKey.cs ├── Application.xaml ├── Application.xaml.cs ├── ApplicationPreparation.cs ├── AppxManifest.xml ├── CommandLineArgs.cs ├── Interop ├── DotnetVersion.cs ├── IDesktopWallpaper.cs ├── IconHelper.cs ├── LayeredWindowAttributes.cs ├── MonitorInfoEx.cs ├── NativeMethods.cs ├── PhysicalMonitor.cs ├── Platform.cs ├── SystemEnvironment.cs └── UwpBridge.cs ├── Properties ├── AssemblyInfo.cs ├── Directories.cs ├── LicenseInfo.cs ├── ProductInfo.cs ├── Resources.Designer.cs ├── Resources.ja.resx └── Resources.resx ├── Serialization ├── LocalSettingsProperty.cs ├── LocalSettingsProvider.cs ├── SerializableDictionary.cs ├── SerializationExtensions.cs └── Settings.cs ├── Services ├── Helpers.cs ├── HookService.cs ├── KeyHelper.cs ├── LoggingService.cs ├── MonitorService.cs ├── NotificationService.cs ├── ResourceService.cs ├── ShortcutKey.cs ├── ShortcutKeyDetector.cs ├── ShortcutKeyPressedEventArgs.cs ├── VirtualDesktopService.cs └── WallpaperService.cs ├── Startup.cs ├── Styles └── Controls.xaml ├── SylphyHorn.csproj ├── Themes ├── Generic.Keytop.xaml ├── Generic.ShortcutKeyBox.xaml └── Generic.xaml ├── UI ├── Bindings │ ├── BindableTextViewModel.cs │ ├── HeaderContentViewModel.cs │ ├── NotificationWindowViewModel.cs │ ├── SettingsWindowViewModel.cs │ └── WindowPlacement.cs ├── Controls │ ├── ClosingStoryboardBehavior.cs │ ├── Keytop.cs │ ├── ShortcutKeyBox.cs │ └── UnlockImageConverter.cs ├── DynamicInfoTrayIcon.cs ├── NotificationWindow.cs ├── PinWindow.xaml ├── PinWindow.xaml.cs ├── SettingsWindow.xaml ├── SettingsWindow.xaml.cs ├── SwitchWindow.xaml ├── SwitchWindow.xaml.cs └── TaskTrayIcon.cs ├── app.manifest └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/PRIVACY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/README.md -------------------------------------------------------------------------------- /packaging/.gitignore: -------------------------------------------------------------------------------- 1 | /* 2 | !/.gitignore 3 | !/*.ps1 4 | -------------------------------------------------------------------------------- /packaging/MakeAppX.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/packaging/MakeAppX.ps1 -------------------------------------------------------------------------------- /resources/icon/150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/resources/icon/150.png -------------------------------------------------------------------------------- /resources/icon/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/resources/icon/16.png -------------------------------------------------------------------------------- /resources/icon/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/resources/icon/20.png -------------------------------------------------------------------------------- /resources/icon/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/resources/icon/24.png -------------------------------------------------------------------------------- /resources/icon/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/resources/icon/28.png -------------------------------------------------------------------------------- /resources/icon/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/resources/icon/32.png -------------------------------------------------------------------------------- /resources/icon/44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/resources/icon/44.png -------------------------------------------------------------------------------- /resources/icon/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/resources/icon/48.png -------------------------------------------------------------------------------- /resources/icon/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/resources/icon/50.png -------------------------------------------------------------------------------- /resources/icon/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/resources/icon/64.png -------------------------------------------------------------------------------- /resources/icon/tasktray16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/resources/icon/tasktray16.png -------------------------------------------------------------------------------- /resources/icon/tasktray20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/resources/icon/tasktray20.png -------------------------------------------------------------------------------- /resources/icon/tasktray24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/resources/icon/tasktray24.png -------------------------------------------------------------------------------- /resources/icon/tasktray28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/resources/icon/tasktray28.png -------------------------------------------------------------------------------- /resources/icon/tasktray32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/resources/icon/tasktray32.png -------------------------------------------------------------------------------- /source/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/.editorconfig -------------------------------------------------------------------------------- /source/SylphyHorn.Core/Serialization/DictionaryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn.Core/Serialization/DictionaryProvider.cs -------------------------------------------------------------------------------- /source/SylphyHorn.Core/Serialization/GeneralSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn.Core/Serialization/GeneralSettings.cs -------------------------------------------------------------------------------- /source/SylphyHorn.Core/Serialization/SerializableProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn.Core/Serialization/SerializableProperty.cs -------------------------------------------------------------------------------- /source/SylphyHorn.Core/Serialization/SettingsHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn.Core/Serialization/SettingsHost.cs -------------------------------------------------------------------------------- /source/SylphyHorn.Core/Serialization/ShortcutKeySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn.Core/Serialization/ShortcutKeySettings.cs -------------------------------------------------------------------------------- /source/SylphyHorn.Core/SylphyHorn.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn.Core/SylphyHorn.Core.csproj -------------------------------------------------------------------------------- /source/SylphyHorn.Debugging/AppXPackageFileList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn.Debugging/AppXPackageFileList.xml -------------------------------------------------------------------------------- /source/SylphyHorn.Debugging/SylphyHorn.Debugging.vsdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn.Debugging/SylphyHorn.Debugging.vsdproj -------------------------------------------------------------------------------- /source/SylphyHorn.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn.sln -------------------------------------------------------------------------------- /source/SylphyHorn.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn.sln.DotSettings -------------------------------------------------------------------------------- /source/SylphyHorn/.assets/BadgeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/.assets/BadgeLogo.png -------------------------------------------------------------------------------- /source/SylphyHorn/.assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/.assets/SplashScreen.png -------------------------------------------------------------------------------- /source/SylphyHorn/.assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/.assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /source/SylphyHorn/.assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/.assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /source/SylphyHorn/.assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/.assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /source/SylphyHorn/.assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/.assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /source/SylphyHorn/.assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/.assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /source/SylphyHorn/.assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/.assets/StoreLogo.png -------------------------------------------------------------------------------- /source/SylphyHorn/.assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/.assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /source/SylphyHorn/.assets/app.green.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/.assets/app.green.ico -------------------------------------------------------------------------------- /source/SylphyHorn/.assets/app.white.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/.assets/app.white.ico -------------------------------------------------------------------------------- /source/SylphyHorn/.assets/tasktray.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/.assets/tasktray.ico -------------------------------------------------------------------------------- /source/SylphyHorn/.build/post-build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/.build/post-build.ps1 -------------------------------------------------------------------------------- /source/SylphyHorn/.licenses/Livet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/.licenses/Livet.txt -------------------------------------------------------------------------------- /source/SylphyHorn/.licenses/MetroRadiance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/.licenses/MetroRadiance.txt -------------------------------------------------------------------------------- /source/SylphyHorn/.licenses/MetroTrilithon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/.licenses/MetroTrilithon.txt -------------------------------------------------------------------------------- /source/SylphyHorn/.licenses/Open.WinKeyboardHook.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/.licenses/Open.WinKeyboardHook.txt -------------------------------------------------------------------------------- /source/SylphyHorn/.licenses/StatefulModel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/.licenses/StatefulModel.txt -------------------------------------------------------------------------------- /source/SylphyHorn/.licenses/VirtualDesktop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/.licenses/VirtualDesktop.txt -------------------------------------------------------------------------------- /source/SylphyHorn/Annotations/DarkAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Annotations/DarkAttribute.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Annotations/ElementalAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Annotations/ElementalAttribute.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Annotations/LightAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Annotations/LightAttribute.cs -------------------------------------------------------------------------------- /source/SylphyHorn/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/App.config -------------------------------------------------------------------------------- /source/SylphyHorn/Application.Static.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Application.Static.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Application.iKey.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace SylphyHorn 3 | { 4 | partial class Application 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /source/SylphyHorn/Application.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Application.xaml -------------------------------------------------------------------------------- /source/SylphyHorn/Application.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Application.xaml.cs -------------------------------------------------------------------------------- /source/SylphyHorn/ApplicationPreparation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/ApplicationPreparation.cs -------------------------------------------------------------------------------- /source/SylphyHorn/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/AppxManifest.xml -------------------------------------------------------------------------------- /source/SylphyHorn/CommandLineArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/CommandLineArgs.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Interop/DotnetVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Interop/DotnetVersion.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Interop/IDesktopWallpaper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Interop/IDesktopWallpaper.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Interop/IconHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Interop/IconHelper.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Interop/LayeredWindowAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Interop/LayeredWindowAttributes.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Interop/MonitorInfoEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Interop/MonitorInfoEx.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Interop/PhysicalMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Interop/PhysicalMonitor.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Interop/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Interop/Platform.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Interop/SystemEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Interop/SystemEnvironment.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Interop/UwpBridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Interop/UwpBridge.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Properties/Directories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Properties/Directories.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Properties/LicenseInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Properties/LicenseInfo.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Properties/ProductInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Properties/ProductInfo.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Properties/Resources.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Properties/Resources.ja.resx -------------------------------------------------------------------------------- /source/SylphyHorn/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Properties/Resources.resx -------------------------------------------------------------------------------- /source/SylphyHorn/Serialization/LocalSettingsProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Serialization/LocalSettingsProperty.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Serialization/LocalSettingsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Serialization/LocalSettingsProvider.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Serialization/SerializableDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Serialization/SerializableDictionary.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Serialization/SerializationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Serialization/SerializationExtensions.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Serialization/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Serialization/Settings.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Services/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Services/Helpers.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Services/HookService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Services/HookService.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Services/KeyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Services/KeyHelper.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Services/LoggingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Services/LoggingService.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Services/MonitorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Services/MonitorService.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Services/NotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Services/NotificationService.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Services/ResourceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Services/ResourceService.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Services/ShortcutKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Services/ShortcutKey.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Services/ShortcutKeyDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Services/ShortcutKeyDetector.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Services/ShortcutKeyPressedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Services/ShortcutKeyPressedEventArgs.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Services/VirtualDesktopService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Services/VirtualDesktopService.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Services/WallpaperService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Services/WallpaperService.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Startup.cs -------------------------------------------------------------------------------- /source/SylphyHorn/Styles/Controls.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Styles/Controls.xaml -------------------------------------------------------------------------------- /source/SylphyHorn/SylphyHorn.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/SylphyHorn.csproj -------------------------------------------------------------------------------- /source/SylphyHorn/Themes/Generic.Keytop.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Themes/Generic.Keytop.xaml -------------------------------------------------------------------------------- /source/SylphyHorn/Themes/Generic.ShortcutKeyBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Themes/Generic.ShortcutKeyBox.xaml -------------------------------------------------------------------------------- /source/SylphyHorn/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/Themes/Generic.xaml -------------------------------------------------------------------------------- /source/SylphyHorn/UI/Bindings/BindableTextViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/UI/Bindings/BindableTextViewModel.cs -------------------------------------------------------------------------------- /source/SylphyHorn/UI/Bindings/HeaderContentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/UI/Bindings/HeaderContentViewModel.cs -------------------------------------------------------------------------------- /source/SylphyHorn/UI/Bindings/NotificationWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/UI/Bindings/NotificationWindowViewModel.cs -------------------------------------------------------------------------------- /source/SylphyHorn/UI/Bindings/SettingsWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/UI/Bindings/SettingsWindowViewModel.cs -------------------------------------------------------------------------------- /source/SylphyHorn/UI/Bindings/WindowPlacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/UI/Bindings/WindowPlacement.cs -------------------------------------------------------------------------------- /source/SylphyHorn/UI/Controls/ClosingStoryboardBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/UI/Controls/ClosingStoryboardBehavior.cs -------------------------------------------------------------------------------- /source/SylphyHorn/UI/Controls/Keytop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/UI/Controls/Keytop.cs -------------------------------------------------------------------------------- /source/SylphyHorn/UI/Controls/ShortcutKeyBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/UI/Controls/ShortcutKeyBox.cs -------------------------------------------------------------------------------- /source/SylphyHorn/UI/Controls/UnlockImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/UI/Controls/UnlockImageConverter.cs -------------------------------------------------------------------------------- /source/SylphyHorn/UI/DynamicInfoTrayIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/UI/DynamicInfoTrayIcon.cs -------------------------------------------------------------------------------- /source/SylphyHorn/UI/NotificationWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/UI/NotificationWindow.cs -------------------------------------------------------------------------------- /source/SylphyHorn/UI/PinWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/UI/PinWindow.xaml -------------------------------------------------------------------------------- /source/SylphyHorn/UI/PinWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/UI/PinWindow.xaml.cs -------------------------------------------------------------------------------- /source/SylphyHorn/UI/SettingsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/UI/SettingsWindow.xaml -------------------------------------------------------------------------------- /source/SylphyHorn/UI/SettingsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/UI/SettingsWindow.xaml.cs -------------------------------------------------------------------------------- /source/SylphyHorn/UI/SwitchWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/UI/SwitchWindow.xaml -------------------------------------------------------------------------------- /source/SylphyHorn/UI/SwitchWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/UI/SwitchWindow.xaml.cs -------------------------------------------------------------------------------- /source/SylphyHorn/UI/TaskTrayIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/UI/TaskTrayIcon.cs -------------------------------------------------------------------------------- /source/SylphyHorn/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/app.manifest -------------------------------------------------------------------------------- /source/SylphyHorn/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grabacr07/SylphyHorn/HEAD/source/SylphyHorn/packages.config --------------------------------------------------------------------------------