├── .gitignore ├── LICENSE ├── Package └── Chocolatey │ ├── icon.png │ ├── smartcontextmenu.nuspec │ ├── tools │ └── chocolateyinstall.ps1 │ └── update.ps1 ├── README.md ├── README_CN.md ├── README_KO.md ├── README_RU.md ├── SmartContextMenu.sln └── SmartContextMenu ├── AutoStarter.cs ├── CommandLineParser.cs ├── ContextMenuItemValue.cs ├── ContextMenuManager.cs ├── Controls ├── DataGridViewDisableButtonCell.cs └── DataGridViewDisableButtonColumn.cs ├── EventArgs.cs ├── Extensions ├── EnumExtensions.cs ├── IEnumerableExtensions.cs ├── PriorityClassExtensions.cs ├── PriorityExtensions.cs ├── ProcessExtensions.cs └── StringExtensions.cs ├── Forms ├── AboutForm.Designer.cs ├── AboutForm.cs ├── AboutForm.resx ├── ApplicationSettingsForm.Designer.cs ├── ApplicationSettingsForm.cs ├── ApplicationSettingsForm.resx ├── DimForm.Designer.cs ├── DimForm.cs ├── HotkeysForm.Designer.cs ├── HotkeysForm.cs ├── HotkeysForm.resx ├── InformationForm.Designer.cs ├── InformationForm.cs ├── InformationForm.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── MessageBoxForm.Designer.cs ├── MessageBoxForm.cs ├── MessageBoxForm.resx ├── ParameterForm.Designer.cs ├── ParameterForm.cs ├── ParameterForm.resx ├── PositionForm.Designer.cs ├── PositionForm.cs ├── PositionForm.resx ├── SizeForm.Designer.cs ├── SizeForm.cs ├── SizeForm.resx ├── SizeSettingsForm.Designer.cs ├── SizeSettingsForm.cs ├── SizeSettingsForm.resx ├── StartProgramForm.Designer.cs ├── StartProgramForm.cs ├── StartProgramForm.resx ├── TitleForm.Designer.cs ├── TitleForm.cs ├── TitleForm.resx ├── TransparencyForm.Designer.cs ├── TransparencyForm.cs └── TransparencyForm.resx ├── Hooks ├── KeyboardEventArgs.cs ├── KeyboardHook.cs ├── MouseButton.cs ├── MouseHook.cs ├── VirtualKey.cs └── VirtualKeyModifier.cs ├── Images ├── ArrowDown.png ├── ArrowUp.png ├── SmartContextMenu.ico ├── SmartContextMenu.png ├── SmartContextMenuCn1.png ├── SmartContextMenuCn2.png ├── SmartContextMenuCn3.png ├── SmartContextMenuEn1.png ├── SmartContextMenuEn2.png ├── SmartContextMenuEn3.png ├── SmartContextMenuKo1.png ├── SmartContextMenuKo2.png ├── SmartContextMenuKo3.png ├── SmartContextMenuLogo.png ├── SmartContextMenuRu1.png ├── SmartContextMenuRu2.png └── SmartContextMenuRu3.png ├── Language.xml ├── LanguageManager.cs ├── MenuItemName.cs ├── Native ├── Constants.cs ├── Dwmapi.cs ├── Enums │ ├── AccentState.cs │ ├── CopyPixelOperations.cs │ ├── DpiAwarenessContext.cs │ ├── DwmBB.cs │ ├── LayeredWindow.cs │ ├── Priority.cs │ ├── PriorityClass.cs │ ├── ProcessAccess.cs │ ├── ProcessDpiAwareness.cs │ ├── ShowWindowCommands.cs │ ├── ThreadAccess.cs │ ├── WindowCompositionAttribute.cs │ └── WindowShowStyle.cs ├── Gdi32.cs ├── Kernel32.cs ├── Ntdll.cs ├── SHCore.cs ├── Structs │ ├── AccentPolicy.cs │ ├── CURSORINFO.cs │ ├── ConsoleScreenBufferInfo.cs │ ├── Coord.cs │ ├── DwmBlurBehind.cs │ ├── ICONINFO.cs │ ├── KeyboardLLHookStruct.cs │ ├── MonitorInfo.cs │ ├── MouseLLHookStruct.cs │ ├── Point.cs │ ├── ProcessBasicInformation.cs │ ├── Rect.cs │ ├── SmallRect.cs │ ├── TitlebarInfo.cs │ ├── WindowCompositionAttributeData.cs │ ├── WindowInfo.cs │ └── WindowPlacement.cs └── User32.cs ├── ProcessInfo.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Settings ├── ApplicationSettings.cs ├── ApplicationSettingsFile.cs ├── DimmerSettings.cs ├── MenuItem.cs ├── MenuItemType.cs ├── MenuItems.cs ├── MoveToMenuItem.cs ├── StartProgramMenuItem.cs └── WindowSizeMenuItem.cs ├── SmartContextMenu.csproj ├── SmartContextMenu.ico ├── SmartContextMenu.xml ├── SystemTrayMenu.cs ├── Utils ├── AssemblyUtils.cs ├── EnumUtils.cs ├── FileUtils.cs ├── SystemUtils.cs └── WindowUtils.cs ├── Win32Window.cs ├── Window.cs ├── WindowAlignment.cs ├── WindowDetails.cs ├── WindowSizerType.cs └── app.manifest /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/LICENSE -------------------------------------------------------------------------------- /Package/Chocolatey/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/Package/Chocolatey/icon.png -------------------------------------------------------------------------------- /Package/Chocolatey/smartcontextmenu.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/Package/Chocolatey/smartcontextmenu.nuspec -------------------------------------------------------------------------------- /Package/Chocolatey/tools/chocolateyinstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/Package/Chocolatey/tools/chocolateyinstall.ps1 -------------------------------------------------------------------------------- /Package/Chocolatey/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/Package/Chocolatey/update.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/README_CN.md -------------------------------------------------------------------------------- /README_KO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/README_KO.md -------------------------------------------------------------------------------- /README_RU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/README_RU.md -------------------------------------------------------------------------------- /SmartContextMenu.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu.sln -------------------------------------------------------------------------------- /SmartContextMenu/AutoStarter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/AutoStarter.cs -------------------------------------------------------------------------------- /SmartContextMenu/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/CommandLineParser.cs -------------------------------------------------------------------------------- /SmartContextMenu/ContextMenuItemValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/ContextMenuItemValue.cs -------------------------------------------------------------------------------- /SmartContextMenu/ContextMenuManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/ContextMenuManager.cs -------------------------------------------------------------------------------- /SmartContextMenu/Controls/DataGridViewDisableButtonCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Controls/DataGridViewDisableButtonCell.cs -------------------------------------------------------------------------------- /SmartContextMenu/Controls/DataGridViewDisableButtonColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Controls/DataGridViewDisableButtonColumn.cs -------------------------------------------------------------------------------- /SmartContextMenu/EventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/EventArgs.cs -------------------------------------------------------------------------------- /SmartContextMenu/Extensions/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Extensions/EnumExtensions.cs -------------------------------------------------------------------------------- /SmartContextMenu/Extensions/IEnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Extensions/IEnumerableExtensions.cs -------------------------------------------------------------------------------- /SmartContextMenu/Extensions/PriorityClassExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Extensions/PriorityClassExtensions.cs -------------------------------------------------------------------------------- /SmartContextMenu/Extensions/PriorityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Extensions/PriorityExtensions.cs -------------------------------------------------------------------------------- /SmartContextMenu/Extensions/ProcessExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Extensions/ProcessExtensions.cs -------------------------------------------------------------------------------- /SmartContextMenu/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/AboutForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/AboutForm.Designer.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/AboutForm.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/AboutForm.resx -------------------------------------------------------------------------------- /SmartContextMenu/Forms/ApplicationSettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/ApplicationSettingsForm.Designer.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/ApplicationSettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/ApplicationSettingsForm.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/ApplicationSettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/ApplicationSettingsForm.resx -------------------------------------------------------------------------------- /SmartContextMenu/Forms/DimForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/DimForm.Designer.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/DimForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/DimForm.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/HotkeysForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/HotkeysForm.Designer.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/HotkeysForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/HotkeysForm.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/HotkeysForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/HotkeysForm.resx -------------------------------------------------------------------------------- /SmartContextMenu/Forms/InformationForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/InformationForm.Designer.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/InformationForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/InformationForm.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/InformationForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/InformationForm.resx -------------------------------------------------------------------------------- /SmartContextMenu/Forms/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/MainForm.Designer.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/MainForm.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/MainForm.resx -------------------------------------------------------------------------------- /SmartContextMenu/Forms/MessageBoxForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/MessageBoxForm.Designer.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/MessageBoxForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/MessageBoxForm.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/MessageBoxForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/MessageBoxForm.resx -------------------------------------------------------------------------------- /SmartContextMenu/Forms/ParameterForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/ParameterForm.Designer.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/ParameterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/ParameterForm.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/ParameterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/ParameterForm.resx -------------------------------------------------------------------------------- /SmartContextMenu/Forms/PositionForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/PositionForm.Designer.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/PositionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/PositionForm.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/PositionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/PositionForm.resx -------------------------------------------------------------------------------- /SmartContextMenu/Forms/SizeForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/SizeForm.Designer.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/SizeForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/SizeForm.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/SizeForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/SizeForm.resx -------------------------------------------------------------------------------- /SmartContextMenu/Forms/SizeSettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/SizeSettingsForm.Designer.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/SizeSettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/SizeSettingsForm.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/SizeSettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/SizeSettingsForm.resx -------------------------------------------------------------------------------- /SmartContextMenu/Forms/StartProgramForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/StartProgramForm.Designer.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/StartProgramForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/StartProgramForm.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/StartProgramForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/StartProgramForm.resx -------------------------------------------------------------------------------- /SmartContextMenu/Forms/TitleForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/TitleForm.Designer.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/TitleForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/TitleForm.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/TitleForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/TitleForm.resx -------------------------------------------------------------------------------- /SmartContextMenu/Forms/TransparencyForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/TransparencyForm.Designer.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/TransparencyForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/TransparencyForm.cs -------------------------------------------------------------------------------- /SmartContextMenu/Forms/TransparencyForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Forms/TransparencyForm.resx -------------------------------------------------------------------------------- /SmartContextMenu/Hooks/KeyboardEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Hooks/KeyboardEventArgs.cs -------------------------------------------------------------------------------- /SmartContextMenu/Hooks/KeyboardHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Hooks/KeyboardHook.cs -------------------------------------------------------------------------------- /SmartContextMenu/Hooks/MouseButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Hooks/MouseButton.cs -------------------------------------------------------------------------------- /SmartContextMenu/Hooks/MouseHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Hooks/MouseHook.cs -------------------------------------------------------------------------------- /SmartContextMenu/Hooks/VirtualKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Hooks/VirtualKey.cs -------------------------------------------------------------------------------- /SmartContextMenu/Hooks/VirtualKeyModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Hooks/VirtualKeyModifier.cs -------------------------------------------------------------------------------- /SmartContextMenu/Images/ArrowDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Images/ArrowDown.png -------------------------------------------------------------------------------- /SmartContextMenu/Images/ArrowUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Images/ArrowUp.png -------------------------------------------------------------------------------- /SmartContextMenu/Images/SmartContextMenu.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Images/SmartContextMenu.ico -------------------------------------------------------------------------------- /SmartContextMenu/Images/SmartContextMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Images/SmartContextMenu.png -------------------------------------------------------------------------------- /SmartContextMenu/Images/SmartContextMenuCn1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Images/SmartContextMenuCn1.png -------------------------------------------------------------------------------- /SmartContextMenu/Images/SmartContextMenuCn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Images/SmartContextMenuCn2.png -------------------------------------------------------------------------------- /SmartContextMenu/Images/SmartContextMenuCn3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Images/SmartContextMenuCn3.png -------------------------------------------------------------------------------- /SmartContextMenu/Images/SmartContextMenuEn1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Images/SmartContextMenuEn1.png -------------------------------------------------------------------------------- /SmartContextMenu/Images/SmartContextMenuEn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Images/SmartContextMenuEn2.png -------------------------------------------------------------------------------- /SmartContextMenu/Images/SmartContextMenuEn3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Images/SmartContextMenuEn3.png -------------------------------------------------------------------------------- /SmartContextMenu/Images/SmartContextMenuKo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Images/SmartContextMenuKo1.png -------------------------------------------------------------------------------- /SmartContextMenu/Images/SmartContextMenuKo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Images/SmartContextMenuKo2.png -------------------------------------------------------------------------------- /SmartContextMenu/Images/SmartContextMenuKo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Images/SmartContextMenuKo3.png -------------------------------------------------------------------------------- /SmartContextMenu/Images/SmartContextMenuLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Images/SmartContextMenuLogo.png -------------------------------------------------------------------------------- /SmartContextMenu/Images/SmartContextMenuRu1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Images/SmartContextMenuRu1.png -------------------------------------------------------------------------------- /SmartContextMenu/Images/SmartContextMenuRu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Images/SmartContextMenuRu2.png -------------------------------------------------------------------------------- /SmartContextMenu/Images/SmartContextMenuRu3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Images/SmartContextMenuRu3.png -------------------------------------------------------------------------------- /SmartContextMenu/Language.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Language.xml -------------------------------------------------------------------------------- /SmartContextMenu/LanguageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/LanguageManager.cs -------------------------------------------------------------------------------- /SmartContextMenu/MenuItemName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/MenuItemName.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Constants.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Dwmapi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Dwmapi.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Enums/AccentState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Enums/AccentState.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Enums/CopyPixelOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Enums/CopyPixelOperations.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Enums/DpiAwarenessContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Enums/DpiAwarenessContext.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Enums/DwmBB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Enums/DwmBB.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Enums/LayeredWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Enums/LayeredWindow.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Enums/Priority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Enums/Priority.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Enums/PriorityClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Enums/PriorityClass.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Enums/ProcessAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Enums/ProcessAccess.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Enums/ProcessDpiAwareness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Enums/ProcessDpiAwareness.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Enums/ShowWindowCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Enums/ShowWindowCommands.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Enums/ThreadAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Enums/ThreadAccess.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Enums/WindowCompositionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Enums/WindowCompositionAttribute.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Enums/WindowShowStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Enums/WindowShowStyle.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Gdi32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Gdi32.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Kernel32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Kernel32.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Ntdll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Ntdll.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/SHCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/SHCore.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Structs/AccentPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Structs/AccentPolicy.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Structs/CURSORINFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Structs/CURSORINFO.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Structs/ConsoleScreenBufferInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Structs/ConsoleScreenBufferInfo.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Structs/Coord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Structs/Coord.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Structs/DwmBlurBehind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Structs/DwmBlurBehind.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Structs/ICONINFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Structs/ICONINFO.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Structs/KeyboardLLHookStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Structs/KeyboardLLHookStruct.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Structs/MonitorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Structs/MonitorInfo.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Structs/MouseLLHookStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Structs/MouseLLHookStruct.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Structs/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Structs/Point.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Structs/ProcessBasicInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Structs/ProcessBasicInformation.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Structs/Rect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Structs/Rect.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Structs/SmallRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Structs/SmallRect.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Structs/TitlebarInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Structs/TitlebarInfo.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Structs/WindowCompositionAttributeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Structs/WindowCompositionAttributeData.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Structs/WindowInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Structs/WindowInfo.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/Structs/WindowPlacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/Structs/WindowPlacement.cs -------------------------------------------------------------------------------- /SmartContextMenu/Native/User32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Native/User32.cs -------------------------------------------------------------------------------- /SmartContextMenu/ProcessInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/ProcessInfo.cs -------------------------------------------------------------------------------- /SmartContextMenu/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Program.cs -------------------------------------------------------------------------------- /SmartContextMenu/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SmartContextMenu/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SmartContextMenu/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Properties/Resources.resx -------------------------------------------------------------------------------- /SmartContextMenu/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SmartContextMenu/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Properties/Settings.settings -------------------------------------------------------------------------------- /SmartContextMenu/Settings/ApplicationSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Settings/ApplicationSettings.cs -------------------------------------------------------------------------------- /SmartContextMenu/Settings/ApplicationSettingsFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Settings/ApplicationSettingsFile.cs -------------------------------------------------------------------------------- /SmartContextMenu/Settings/DimmerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Settings/DimmerSettings.cs -------------------------------------------------------------------------------- /SmartContextMenu/Settings/MenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Settings/MenuItem.cs -------------------------------------------------------------------------------- /SmartContextMenu/Settings/MenuItemType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Settings/MenuItemType.cs -------------------------------------------------------------------------------- /SmartContextMenu/Settings/MenuItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Settings/MenuItems.cs -------------------------------------------------------------------------------- /SmartContextMenu/Settings/MoveToMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Settings/MoveToMenuItem.cs -------------------------------------------------------------------------------- /SmartContextMenu/Settings/StartProgramMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Settings/StartProgramMenuItem.cs -------------------------------------------------------------------------------- /SmartContextMenu/Settings/WindowSizeMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Settings/WindowSizeMenuItem.cs -------------------------------------------------------------------------------- /SmartContextMenu/SmartContextMenu.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/SmartContextMenu.csproj -------------------------------------------------------------------------------- /SmartContextMenu/SmartContextMenu.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/SmartContextMenu.ico -------------------------------------------------------------------------------- /SmartContextMenu/SmartContextMenu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/SmartContextMenu.xml -------------------------------------------------------------------------------- /SmartContextMenu/SystemTrayMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/SystemTrayMenu.cs -------------------------------------------------------------------------------- /SmartContextMenu/Utils/AssemblyUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Utils/AssemblyUtils.cs -------------------------------------------------------------------------------- /SmartContextMenu/Utils/EnumUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Utils/EnumUtils.cs -------------------------------------------------------------------------------- /SmartContextMenu/Utils/FileUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Utils/FileUtils.cs -------------------------------------------------------------------------------- /SmartContextMenu/Utils/SystemUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Utils/SystemUtils.cs -------------------------------------------------------------------------------- /SmartContextMenu/Utils/WindowUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Utils/WindowUtils.cs -------------------------------------------------------------------------------- /SmartContextMenu/Win32Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Win32Window.cs -------------------------------------------------------------------------------- /SmartContextMenu/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/Window.cs -------------------------------------------------------------------------------- /SmartContextMenu/WindowAlignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/WindowAlignment.cs -------------------------------------------------------------------------------- /SmartContextMenu/WindowDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/WindowDetails.cs -------------------------------------------------------------------------------- /SmartContextMenu/WindowSizerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/WindowSizerType.cs -------------------------------------------------------------------------------- /SmartContextMenu/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartContextMenu/HEAD/SmartContextMenu/app.manifest --------------------------------------------------------------------------------