├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── managedshell.yml ├── .gitignore ├── Directory.Build.props ├── LICENSE ├── ManagedShell.sln ├── README.md ├── src ├── ManagedShell.AppBar │ ├── AppBarEdge.cs │ ├── AppBarManager.cs │ ├── AppBarMode.cs │ ├── AppBarScreen.cs │ ├── AppBarWindow.cs │ ├── ExplorerHelper.cs │ ├── FullScreenApp.cs │ ├── FullScreenHelper.cs │ ├── ManagedShell.AppBar.csproj │ ├── ScreenInfo.cs │ └── ScreenSetupReason.cs ├── ManagedShell.Common │ ├── Common │ │ ├── DisposableObject.cs │ │ └── ThreadSafeObservableCollection.cs │ ├── Enums │ │ ├── IconSize.cs │ │ ├── MONITOR_APP_VISIBILITY.cs │ │ ├── ShellFolderPath.cs │ │ ├── StartupEntryScope.cs │ │ └── StartupEntryType.cs │ ├── Extensions │ │ └── RegistryKeyExtensions.cs │ ├── Helpers │ │ ├── AppVisibilityHelper.cs │ │ ├── DpiHelper.cs │ │ ├── EnvironmentHelper.cs │ │ ├── GroupPolicyHelper.cs │ │ ├── IconHelper.cs │ │ ├── IconImageConverter.cs │ │ ├── KeyboardLayoutHelper.cs │ │ ├── MouseHelper.cs │ │ ├── PowerHelper.cs │ │ ├── ScreenHelper.cs │ │ ├── SearchHelper.cs │ │ ├── ShellHelper.cs │ │ ├── SoundHelper.cs │ │ ├── VolumeHelper.cs │ │ └── WindowHelper.cs │ ├── Interfaces │ │ ├── IAppVisibility.cs │ │ ├── IAppVisibilityEvents.cs │ │ └── IApplicationActivationManager.cs │ ├── Logging │ │ ├── ILog.cs │ │ ├── LogEventArgs.cs │ │ ├── LogSeverity.cs │ │ ├── Observers │ │ │ ├── ConsoleLog.cs │ │ │ ├── DisposableLogBase.cs │ │ │ └── FileLog.cs │ │ └── ShellLogger.cs │ ├── ManagedShell.Common.csproj │ ├── Resources │ │ └── nullIcon.png │ ├── Structs │ │ ├── KeyboardLayout.cs │ │ ├── StartupEntry.cs │ │ └── StartupLocation.cs │ └── SupportingClasses │ │ ├── AppVisibility.cs │ │ ├── AppVisibilityEventArgs.cs │ │ ├── AppVisibilityEvents.cs │ │ ├── LauncherVisibilityEventArgs.cs │ │ ├── NativeWindowEx.cs │ │ ├── SearchResult.cs │ │ ├── ShellWindow.cs │ │ └── StartupRunner.cs ├── ManagedShell.Interop │ ├── ComTaskScheduler.cs │ ├── KnownFolders.cs │ ├── ManagedShell.Interop.csproj │ ├── NativeMethods.AdvApi32.cs │ ├── NativeMethods.DocObj.cs │ ├── NativeMethods.DwmApi.cs │ ├── NativeMethods.Gdi32.cs │ ├── NativeMethods.Kernel32.cs │ ├── NativeMethods.Msi.cs │ ├── NativeMethods.Ole32.cs │ ├── NativeMethods.PowrProf.cs │ ├── NativeMethods.ShFolder.cs │ ├── NativeMethods.Shell32.cs │ ├── NativeMethods.ShlwApi.cs │ ├── NativeMethods.User32.cs │ ├── NativeMethods.UxTheme.cs │ ├── NativeMethods.cs │ └── WindowsServices.cs ├── ManagedShell.ShellFolders │ ├── ChangeWatcher.cs │ ├── Enums │ │ ├── CLSCTX.cs │ │ ├── CMF.cs │ │ ├── CMIC.cs │ │ ├── CommonContextMenuItem.cs │ │ ├── CommonContextMenuVerb.cs │ │ ├── FileOperation.cs │ │ ├── GCS.cs │ │ ├── MFT.cs │ │ ├── SFGAO.cs │ │ ├── SHCONTF.cs │ │ ├── SHGDN.cs │ │ ├── SIGDN.cs │ │ ├── SIIGBF.cs │ │ ├── SLGP_FLAGS.cs │ │ ├── SLR_FLAGS.cs │ │ ├── STGM.cs │ │ └── TPM.cs │ ├── FileOperationWorker.cs │ ├── Interfaces │ │ ├── IContextMenu.cs │ │ ├── IContextMenu2.cs │ │ ├── IContextMenu3.cs │ │ ├── IEnumIDList.cs │ │ ├── IParentAndItem.cs │ │ ├── IShellExtInit.cs │ │ ├── IShellFolder.cs │ │ ├── IShellItem.cs │ │ ├── IShellItemImageFactory.cs │ │ └── IShellLink.cs │ ├── Interop.cs │ ├── ManagedShell.ShellFolders.csproj │ ├── ShellContextMenu.cs │ ├── ShellFile.cs │ ├── ShellFolder.cs │ ├── ShellFolderContextMenu.cs │ ├── ShellItem.cs │ ├── ShellItemContextMenu.cs │ ├── ShellLink.cs │ ├── ShellLinkHelper.cs │ ├── ShellMenuCommand.cs │ ├── ShellMenuCommandBuilder.cs │ ├── ShellNewMenuCommand.cs │ └── Structs │ │ ├── BackgroundFileOperation.cs │ │ ├── CMINVOKECOMMANDINFOEX.cs │ │ ├── TPMPARAMS.cs │ │ └── WIN32_FIND_DATA.cs ├── ManagedShell.UWPInterop │ ├── ImmersiveShellHelper.cs │ ├── Interfaces │ │ ├── CImmersiveShell.cs │ │ ├── IActionCenterExperienceManager.cs │ │ ├── IControlCenterExperienceManager.cs │ │ ├── INetworkFlyoutExperienceManager.cs │ │ ├── INetworkFlyoutExperienceManager_20H1.cs │ │ ├── IServiceProvider.cs │ │ ├── IShellExperienceManagerFactory.cs │ │ ├── ITrayBatteryFlyoutExperienceManager.cs │ │ ├── ITrayClockFlyoutExperienceManager.cs │ │ └── ITrayMtcUvcFlyoutExperienceManager.cs │ ├── ManagedShell.UWPInterop.csproj │ ├── NativeMethods.cs │ ├── StoreApp.cs │ ├── StoreAppHelper.cs │ └── StoreAppList.cs ├── ManagedShell.WindowsTasks │ ├── ApplicationWindow.cs │ ├── FullScreenEventArgs.cs │ ├── ITaskCategoryProvider.cs │ ├── ManagedShell.WindowsTasks.csproj │ ├── TaskCategoryChangeDelegate.cs │ ├── Tasks.cs │ ├── TasksService.cs │ └── WindowEventArgs.cs ├── ManagedShell.WindowsTray │ ├── BalloonVisibility.cs │ ├── Delegates.cs │ ├── ExplorerTrayService.cs │ ├── ManagedShell.WindowsTray.csproj │ ├── NotificationArea.cs │ ├── NotificationBalloon.cs │ ├── NotificationBalloonEventArgs.cs │ ├── NotifyIcon.cs │ ├── SafeNotifyIconData.cs │ ├── ShellServiceObject.cs │ ├── SysTrayObject.cs │ ├── TrayHostSizeData.cs │ ├── TrayNotify.cs │ └── TrayService.cs └── ManagedShell │ ├── ManagedShell.csproj │ ├── ShellConfig.cs │ └── ShellManager.cs └── version.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/managedshell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/.github/workflows/managedshell.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/LICENSE -------------------------------------------------------------------------------- /ManagedShell.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/ManagedShell.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/README.md -------------------------------------------------------------------------------- /src/ManagedShell.AppBar/AppBarEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.AppBar/AppBarEdge.cs -------------------------------------------------------------------------------- /src/ManagedShell.AppBar/AppBarManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.AppBar/AppBarManager.cs -------------------------------------------------------------------------------- /src/ManagedShell.AppBar/AppBarMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.AppBar/AppBarMode.cs -------------------------------------------------------------------------------- /src/ManagedShell.AppBar/AppBarScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.AppBar/AppBarScreen.cs -------------------------------------------------------------------------------- /src/ManagedShell.AppBar/AppBarWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.AppBar/AppBarWindow.cs -------------------------------------------------------------------------------- /src/ManagedShell.AppBar/ExplorerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.AppBar/ExplorerHelper.cs -------------------------------------------------------------------------------- /src/ManagedShell.AppBar/FullScreenApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.AppBar/FullScreenApp.cs -------------------------------------------------------------------------------- /src/ManagedShell.AppBar/FullScreenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.AppBar/FullScreenHelper.cs -------------------------------------------------------------------------------- /src/ManagedShell.AppBar/ManagedShell.AppBar.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.AppBar/ManagedShell.AppBar.csproj -------------------------------------------------------------------------------- /src/ManagedShell.AppBar/ScreenInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.AppBar/ScreenInfo.cs -------------------------------------------------------------------------------- /src/ManagedShell.AppBar/ScreenSetupReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.AppBar/ScreenSetupReason.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Common/DisposableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Common/DisposableObject.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Common/ThreadSafeObservableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Common/ThreadSafeObservableCollection.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Enums/IconSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Enums/IconSize.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Enums/MONITOR_APP_VISIBILITY.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Enums/MONITOR_APP_VISIBILITY.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Enums/ShellFolderPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Enums/ShellFolderPath.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Enums/StartupEntryScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Enums/StartupEntryScope.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Enums/StartupEntryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Enums/StartupEntryType.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Extensions/RegistryKeyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Extensions/RegistryKeyExtensions.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Helpers/AppVisibilityHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Helpers/AppVisibilityHelper.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Helpers/DpiHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Helpers/DpiHelper.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Helpers/EnvironmentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Helpers/EnvironmentHelper.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Helpers/GroupPolicyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Helpers/GroupPolicyHelper.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Helpers/IconHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Helpers/IconHelper.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Helpers/IconImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Helpers/IconImageConverter.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Helpers/KeyboardLayoutHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Helpers/KeyboardLayoutHelper.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Helpers/MouseHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Helpers/MouseHelper.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Helpers/PowerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Helpers/PowerHelper.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Helpers/ScreenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Helpers/ScreenHelper.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Helpers/SearchHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Helpers/SearchHelper.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Helpers/ShellHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Helpers/ShellHelper.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Helpers/SoundHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Helpers/SoundHelper.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Helpers/VolumeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Helpers/VolumeHelper.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Helpers/WindowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Helpers/WindowHelper.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Interfaces/IAppVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Interfaces/IAppVisibility.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Interfaces/IAppVisibilityEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Interfaces/IAppVisibilityEvents.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Interfaces/IApplicationActivationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Interfaces/IApplicationActivationManager.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Logging/ILog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Logging/ILog.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Logging/LogEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Logging/LogEventArgs.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Logging/LogSeverity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Logging/LogSeverity.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Logging/Observers/ConsoleLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Logging/Observers/ConsoleLog.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Logging/Observers/DisposableLogBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Logging/Observers/DisposableLogBase.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Logging/Observers/FileLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Logging/Observers/FileLog.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Logging/ShellLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Logging/ShellLogger.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/ManagedShell.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/ManagedShell.Common.csproj -------------------------------------------------------------------------------- /src/ManagedShell.Common/Resources/nullIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Resources/nullIcon.png -------------------------------------------------------------------------------- /src/ManagedShell.Common/Structs/KeyboardLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Structs/KeyboardLayout.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Structs/StartupEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Structs/StartupEntry.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/Structs/StartupLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/Structs/StartupLocation.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/SupportingClasses/AppVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/SupportingClasses/AppVisibility.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/SupportingClasses/AppVisibilityEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/SupportingClasses/AppVisibilityEventArgs.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/SupportingClasses/AppVisibilityEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/SupportingClasses/AppVisibilityEvents.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/SupportingClasses/LauncherVisibilityEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/SupportingClasses/LauncherVisibilityEventArgs.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/SupportingClasses/NativeWindowEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/SupportingClasses/NativeWindowEx.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/SupportingClasses/SearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/SupportingClasses/SearchResult.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/SupportingClasses/ShellWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/SupportingClasses/ShellWindow.cs -------------------------------------------------------------------------------- /src/ManagedShell.Common/SupportingClasses/StartupRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Common/SupportingClasses/StartupRunner.cs -------------------------------------------------------------------------------- /src/ManagedShell.Interop/ComTaskScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Interop/ComTaskScheduler.cs -------------------------------------------------------------------------------- /src/ManagedShell.Interop/KnownFolders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Interop/KnownFolders.cs -------------------------------------------------------------------------------- /src/ManagedShell.Interop/ManagedShell.Interop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Interop/ManagedShell.Interop.csproj -------------------------------------------------------------------------------- /src/ManagedShell.Interop/NativeMethods.AdvApi32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Interop/NativeMethods.AdvApi32.cs -------------------------------------------------------------------------------- /src/ManagedShell.Interop/NativeMethods.DocObj.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Interop/NativeMethods.DocObj.cs -------------------------------------------------------------------------------- /src/ManagedShell.Interop/NativeMethods.DwmApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Interop/NativeMethods.DwmApi.cs -------------------------------------------------------------------------------- /src/ManagedShell.Interop/NativeMethods.Gdi32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Interop/NativeMethods.Gdi32.cs -------------------------------------------------------------------------------- /src/ManagedShell.Interop/NativeMethods.Kernel32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Interop/NativeMethods.Kernel32.cs -------------------------------------------------------------------------------- /src/ManagedShell.Interop/NativeMethods.Msi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Interop/NativeMethods.Msi.cs -------------------------------------------------------------------------------- /src/ManagedShell.Interop/NativeMethods.Ole32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Interop/NativeMethods.Ole32.cs -------------------------------------------------------------------------------- /src/ManagedShell.Interop/NativeMethods.PowrProf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Interop/NativeMethods.PowrProf.cs -------------------------------------------------------------------------------- /src/ManagedShell.Interop/NativeMethods.ShFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Interop/NativeMethods.ShFolder.cs -------------------------------------------------------------------------------- /src/ManagedShell.Interop/NativeMethods.Shell32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Interop/NativeMethods.Shell32.cs -------------------------------------------------------------------------------- /src/ManagedShell.Interop/NativeMethods.ShlwApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Interop/NativeMethods.ShlwApi.cs -------------------------------------------------------------------------------- /src/ManagedShell.Interop/NativeMethods.User32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Interop/NativeMethods.User32.cs -------------------------------------------------------------------------------- /src/ManagedShell.Interop/NativeMethods.UxTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Interop/NativeMethods.UxTheme.cs -------------------------------------------------------------------------------- /src/ManagedShell.Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Interop/NativeMethods.cs -------------------------------------------------------------------------------- /src/ManagedShell.Interop/WindowsServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.Interop/WindowsServices.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/ChangeWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/ChangeWatcher.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Enums/CLSCTX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Enums/CLSCTX.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Enums/CMF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Enums/CMF.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Enums/CMIC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Enums/CMIC.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Enums/CommonContextMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Enums/CommonContextMenuItem.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Enums/CommonContextMenuVerb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Enums/CommonContextMenuVerb.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Enums/FileOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Enums/FileOperation.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Enums/GCS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Enums/GCS.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Enums/MFT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Enums/MFT.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Enums/SFGAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Enums/SFGAO.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Enums/SHCONTF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Enums/SHCONTF.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Enums/SHGDN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Enums/SHGDN.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Enums/SIGDN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Enums/SIGDN.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Enums/SIIGBF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Enums/SIIGBF.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Enums/SLGP_FLAGS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Enums/SLGP_FLAGS.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Enums/SLR_FLAGS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Enums/SLR_FLAGS.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Enums/STGM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Enums/STGM.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Enums/TPM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Enums/TPM.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/FileOperationWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/FileOperationWorker.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Interfaces/IContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Interfaces/IContextMenu.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Interfaces/IContextMenu2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Interfaces/IContextMenu2.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Interfaces/IContextMenu3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Interfaces/IContextMenu3.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Interfaces/IEnumIDList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Interfaces/IEnumIDList.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Interfaces/IParentAndItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Interfaces/IParentAndItem.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Interfaces/IShellExtInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Interfaces/IShellExtInit.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Interfaces/IShellFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Interfaces/IShellFolder.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Interfaces/IShellItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Interfaces/IShellItem.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Interfaces/IShellItemImageFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Interfaces/IShellItemImageFactory.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Interfaces/IShellLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Interfaces/IShellLink.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Interop.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/ManagedShell.ShellFolders.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/ManagedShell.ShellFolders.csproj -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/ShellContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/ShellContextMenu.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/ShellFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/ShellFile.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/ShellFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/ShellFolder.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/ShellFolderContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/ShellFolderContextMenu.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/ShellItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/ShellItem.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/ShellItemContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/ShellItemContextMenu.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/ShellLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/ShellLink.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/ShellLinkHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/ShellLinkHelper.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/ShellMenuCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/ShellMenuCommand.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/ShellMenuCommandBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/ShellMenuCommandBuilder.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/ShellNewMenuCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/ShellNewMenuCommand.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Structs/BackgroundFileOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Structs/BackgroundFileOperation.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Structs/CMINVOKECOMMANDINFOEX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Structs/CMINVOKECOMMANDINFOEX.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Structs/TPMPARAMS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Structs/TPMPARAMS.cs -------------------------------------------------------------------------------- /src/ManagedShell.ShellFolders/Structs/WIN32_FIND_DATA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.ShellFolders/Structs/WIN32_FIND_DATA.cs -------------------------------------------------------------------------------- /src/ManagedShell.UWPInterop/ImmersiveShellHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.UWPInterop/ImmersiveShellHelper.cs -------------------------------------------------------------------------------- /src/ManagedShell.UWPInterop/Interfaces/CImmersiveShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.UWPInterop/Interfaces/CImmersiveShell.cs -------------------------------------------------------------------------------- /src/ManagedShell.UWPInterop/Interfaces/IActionCenterExperienceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.UWPInterop/Interfaces/IActionCenterExperienceManager.cs -------------------------------------------------------------------------------- /src/ManagedShell.UWPInterop/Interfaces/IControlCenterExperienceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.UWPInterop/Interfaces/IControlCenterExperienceManager.cs -------------------------------------------------------------------------------- /src/ManagedShell.UWPInterop/Interfaces/INetworkFlyoutExperienceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.UWPInterop/Interfaces/INetworkFlyoutExperienceManager.cs -------------------------------------------------------------------------------- /src/ManagedShell.UWPInterop/Interfaces/INetworkFlyoutExperienceManager_20H1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.UWPInterop/Interfaces/INetworkFlyoutExperienceManager_20H1.cs -------------------------------------------------------------------------------- /src/ManagedShell.UWPInterop/Interfaces/IServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.UWPInterop/Interfaces/IServiceProvider.cs -------------------------------------------------------------------------------- /src/ManagedShell.UWPInterop/Interfaces/IShellExperienceManagerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.UWPInterop/Interfaces/IShellExperienceManagerFactory.cs -------------------------------------------------------------------------------- /src/ManagedShell.UWPInterop/Interfaces/ITrayBatteryFlyoutExperienceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.UWPInterop/Interfaces/ITrayBatteryFlyoutExperienceManager.cs -------------------------------------------------------------------------------- /src/ManagedShell.UWPInterop/Interfaces/ITrayClockFlyoutExperienceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.UWPInterop/Interfaces/ITrayClockFlyoutExperienceManager.cs -------------------------------------------------------------------------------- /src/ManagedShell.UWPInterop/Interfaces/ITrayMtcUvcFlyoutExperienceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.UWPInterop/Interfaces/ITrayMtcUvcFlyoutExperienceManager.cs -------------------------------------------------------------------------------- /src/ManagedShell.UWPInterop/ManagedShell.UWPInterop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.UWPInterop/ManagedShell.UWPInterop.csproj -------------------------------------------------------------------------------- /src/ManagedShell.UWPInterop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.UWPInterop/NativeMethods.cs -------------------------------------------------------------------------------- /src/ManagedShell.UWPInterop/StoreApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.UWPInterop/StoreApp.cs -------------------------------------------------------------------------------- /src/ManagedShell.UWPInterop/StoreAppHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.UWPInterop/StoreAppHelper.cs -------------------------------------------------------------------------------- /src/ManagedShell.UWPInterop/StoreAppList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.UWPInterop/StoreAppList.cs -------------------------------------------------------------------------------- /src/ManagedShell.WindowsTasks/ApplicationWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.WindowsTasks/ApplicationWindow.cs -------------------------------------------------------------------------------- /src/ManagedShell.WindowsTasks/FullScreenEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.WindowsTasks/FullScreenEventArgs.cs -------------------------------------------------------------------------------- /src/ManagedShell.WindowsTasks/ITaskCategoryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.WindowsTasks/ITaskCategoryProvider.cs -------------------------------------------------------------------------------- /src/ManagedShell.WindowsTasks/ManagedShell.WindowsTasks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.WindowsTasks/ManagedShell.WindowsTasks.csproj -------------------------------------------------------------------------------- /src/ManagedShell.WindowsTasks/TaskCategoryChangeDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.WindowsTasks/TaskCategoryChangeDelegate.cs -------------------------------------------------------------------------------- /src/ManagedShell.WindowsTasks/Tasks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.WindowsTasks/Tasks.cs -------------------------------------------------------------------------------- /src/ManagedShell.WindowsTasks/TasksService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.WindowsTasks/TasksService.cs -------------------------------------------------------------------------------- /src/ManagedShell.WindowsTasks/WindowEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.WindowsTasks/WindowEventArgs.cs -------------------------------------------------------------------------------- /src/ManagedShell.WindowsTray/BalloonVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.WindowsTray/BalloonVisibility.cs -------------------------------------------------------------------------------- /src/ManagedShell.WindowsTray/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.WindowsTray/Delegates.cs -------------------------------------------------------------------------------- /src/ManagedShell.WindowsTray/ExplorerTrayService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.WindowsTray/ExplorerTrayService.cs -------------------------------------------------------------------------------- /src/ManagedShell.WindowsTray/ManagedShell.WindowsTray.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.WindowsTray/ManagedShell.WindowsTray.csproj -------------------------------------------------------------------------------- /src/ManagedShell.WindowsTray/NotificationArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.WindowsTray/NotificationArea.cs -------------------------------------------------------------------------------- /src/ManagedShell.WindowsTray/NotificationBalloon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.WindowsTray/NotificationBalloon.cs -------------------------------------------------------------------------------- /src/ManagedShell.WindowsTray/NotificationBalloonEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.WindowsTray/NotificationBalloonEventArgs.cs -------------------------------------------------------------------------------- /src/ManagedShell.WindowsTray/NotifyIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.WindowsTray/NotifyIcon.cs -------------------------------------------------------------------------------- /src/ManagedShell.WindowsTray/SafeNotifyIconData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.WindowsTray/SafeNotifyIconData.cs -------------------------------------------------------------------------------- /src/ManagedShell.WindowsTray/ShellServiceObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.WindowsTray/ShellServiceObject.cs -------------------------------------------------------------------------------- /src/ManagedShell.WindowsTray/SysTrayObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.WindowsTray/SysTrayObject.cs -------------------------------------------------------------------------------- /src/ManagedShell.WindowsTray/TrayHostSizeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.WindowsTray/TrayHostSizeData.cs -------------------------------------------------------------------------------- /src/ManagedShell.WindowsTray/TrayNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.WindowsTray/TrayNotify.cs -------------------------------------------------------------------------------- /src/ManagedShell.WindowsTray/TrayService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell.WindowsTray/TrayService.cs -------------------------------------------------------------------------------- /src/ManagedShell/ManagedShell.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell/ManagedShell.csproj -------------------------------------------------------------------------------- /src/ManagedShell/ShellConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell/ShellConfig.cs -------------------------------------------------------------------------------- /src/ManagedShell/ShellManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/src/ManagedShell/ShellManager.cs -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cairoshell/ManagedShell/HEAD/version.json --------------------------------------------------------------------------------