- Right Click Enhancer для Windows
- Control. Click Событие
- Определение
- Тип события
- Примеры
- Комментарии
- Примечания к наследникам Notes to inheritors
- Right click on mouse not working in Windows 10
- What can I do if my right-click isn’t working in Windows 10?
- 1. Update the mouse driver
- DriverFix
- 2. Check the mouse
- 3. Switch off Tablet Mode
- 4. Delete third-party shell extensions
- 5. Restart Windows (File) Explorer
- 6. Check Group Policy’s Remove Windows Explorer’s default context menu
- 7. Run the System File Checker
Right Click Enhancer для Windows
Оценка: |
4.33 /5 голосов — 6 |
Лицензия: | Бесплатная |
Версия: | 4.5.6 | Сообщить о новой версии |
Обновлено: | 10.01.2020 |
ОС: | Windows 10, 8.1, 8, 7, XP |
Интерфейс: | Английский |
Разработчик: | RBSoft |
Категории: | Расширения — Быстрый запуск, доступ |
Загрузок (сегодня/всего): | 0 / 1 559 | Статистика |
Размер: | 3,93 Мб |
СКАЧАТЬ |
Right Click Enhancer — набор полезных утилит для Проводника. Позволяет добавлять в контекстное меню наиболее часто используемые приложения, команды, папки и файлы. Таким образом, вы можете открыть любое приложение прямо во время просмотра файлов. Также есть возможность добавлять подменю и дополнительно организовывать ярлыки.
Приложение включает в себя семь утилит, которые позволяют расширить возможности контекстного меню Проводника Windows. Все утилиты просты в настройках и использовании.
- С помощью Right Click Tweaker можно добавить в контекстное меню новые полезные команды, служащие для перемещения объекта, копирования пути к нему в буфер обмен, проверки на целостность или создания списков файлов в папке.
- File Type Editor служит для изменения ассоциаций типов файлов и приложений. В том числе редактирования и удаления существующих и создания новых с присвоением необходимых значков и аргументов.
- Send To Manager позволяет добавлять или удалалять элементы (программу или папку) системного меню «Отправить».
- Right Click Editor IE позволяет удалять и добавлять новые пункты в контекстное меню браузера Internet Explorer.
- New Menu Editor позволяет отредактировать меню «Создать».
- Smart Renamer служит для группового переименования файлов (по тегам, атрибутам, маске).
- SmartSFV используется для проверки целостности файлов.
Tweaker помогает сэкономить около 100 часов работы путем расширения общих задач, таких как перемещение и копирование файла, в том числе скопировать содержимое файла, не открывая его, переименование файлов и многие другие. Также включает в себя множество функций, которые недоступны для пользователей напрямую — добавляет MSCONFIG (средство настройки системы) и Problem Steps Recorder.
При установке нового приложения некоторые из них добавляют свои опции в контекстное меню. Это обеспечивает быстрый переход к запрашиваемым функциям, но в то же время чем больше опций, тем больше места занимает само контекстное меню на экране, превращаясь в простынь. С помощью редактора вы сможете почистить менюшку, оставив только самые необходимые запросы.
- Добавление полезных твиков.
- Создание новых файлов с предопределенным содержанием.
- Экономия времени.
- Экспорт файлов и ключей реестра, которые можно использовать на другом ПК.
- Можно добавлять параметры командной строки.
- Не влияет на производительность ПК.
Control. Click Событие
Определение
Происходит при щелчке элемента управления. Occurs when the control is clicked.
Тип события
Примеры
В следующем примере кода показано Click событие в обработчике событий. The following code example shows the Click event in an event handler.
Комментарии
ClickСобытие передает EventArgs в обработчик событий, поэтому он указывает только на то, что произошло нажатие. The Click event passes an EventArgs to its event handler, so it only indicates that a click has occurred. Если вам нужны более конкретные сведения о мыши (кнопка, число щелчков, поворот колесика или расположение), используйте MouseClick событие. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the MouseClick event. Однако MouseClick событие не будет вызываться, если щелчок вызывается действием, отличным от мыши, например нажатием клавиши ВВОД. However, the MouseClick event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
Двойной щелчок определяется параметрами мыши операционной системы пользователя. A double-click is determined by the mouse settings of the user’s operating system. Пользователь может задать время между нажатиями кнопки мыши, которые будут считаться двойным щелчком, а не двумя отдельными щелчками. The user can set the time between clicks of a mouse button that should be considered a double-click rather than two clicks. ClickСобытие возникает каждый раз при двойном щелчке элемента управления. The Click event is raised every time a control is double-clicked. Например, если у вас есть обработчики событий для Click DoubleClick событий и Form , Click DoubleClick события и вызываются при двойном щелчке формы и вызове обоих методов. For example, if you have event handlers for the Click and DoubleClick events of a Form, the Click and DoubleClick events are raised when the form is double-clicked and both methods are called. Если элемент управления дважды щелкнул, и этот элемент управления не поддерживает DoubleClick событие, Click событие может быть вызвано дважды. If a control is double-clicked and that control does not support the DoubleClick event, the Click event might be raised twice.
StandardClick ControlStyles Чтобы true это событие было создано, необходимо задать значение. You must set the StandardClick value of ControlStyles to true for this event to be raised.
Следующие события не вызываются для TabControl класса, если в коллекции не существует хотя бы одного TabPage из них TabControl.TabPages : Click , DoubleClick , MouseDown , MouseUp , MouseHover , MouseEnter MouseLeave и MouseMove . The following events are not raised for the TabControl class unless there is at least one TabPage in the TabControl.TabPages collection: Click, DoubleClick, MouseDown, MouseUp, MouseHover, MouseEnter, MouseLeave and MouseMove. Если в коллекции есть хотя бы один TabPage элемент, и пользователь взаимодействует с заголовком элемента управления вкладки (где TabPage отображаются имена), TabControl вызывается соответствующее событие. If there is at least one TabPage in the collection, and the user interacts with the tab control’s header (where the TabPage names appear), the TabControl raises the appropriate event. Однако если взаимодействие с пользователем происходит в клиентской области страницы вкладки, TabPage вызывается соответствующее событие. However, if the user interaction is within the client area of the tab page, the TabPage raises the appropriate event.
Дополнительные сведения об обработке событий см. в разделе обработка и вызов событий. For more information about handling events, see Handling and Raising Events.
Примечания к наследникам Notes to inheritors
Наследование от стандартного элемента управления Windows Forms и изменение StandardClick значений или в StandardDoubleClick ControlStyles to true может привести к непредвиденному поведению или не иметь никакого влияния на все, если элемент управления не поддерживает Click события или DoubleClick . Inheriting from a standard Windows Forms control and changing the StandardClick or StandardDoubleClick values of ControlStyles to true can cause unexpected behavior or have no effect at all if the control does not support the Click or DoubleClick events.
В следующей таблице перечислены Windows Formsные элементы управления и события, которые Click DoubleClick вызываются в ответ на указанное действие мыши. The following table lists Windows Forms controls and which event (Click or DoubleClick) is raised in response to the mouse action specified.
Control Control | Щелчок левой кнопкой мыши Left Mouse Click | Двойной щелчок левой кнопкой мыши Left Mouse Double Click | Щелчок правой кнопкой мыши Right Mouse Click | Двойной щелчок правой кнопкой мыши Right Mouse Double Click | Щелчок средней кнопкой мыши Middle Mouse Click | Двойной щелчок средней кнопкой мыши Middle Mouse Double Click | Щелчок мыши XButton1 XButton1 Mouse Click | Double-Click мыши XButton1 XButton1 Mouse Double-Click | Щелчок мыши XButton2 XButton2 Mouse Click | Double-Click мыши XButton2 XButton2 Mouse Double-Click |
---|---|---|---|---|---|---|---|---|---|---|
MonthCalendar, DateTimePicker, HScrollBar, VScrollBar MonthCalendar, DateTimePicker, HScrollBar, VScrollBar | нет none | нет none | нет none | нет none | нет none | нет none | нет none | нет none | нет none | нет none |
Button, CheckBox, RichTextBox, RadioButton Button, CheckBox, RichTextBox, RadioButton | Щелкните Click | Щелкните, щелкните Click, Click | нет none | нет none | нет none | нет none | нет none | нет none | нет none | нет none |
ListBox, CheckedListBox, ComboBox ListBox, CheckedListBox, ComboBox | Щелкните Click | Щелкните, DoubleClick Click, DoubleClick | нет none | нет none | нет none | нет none | нет none | нет none | нет none | нет none |
TextBox, DomainUpDown, NumericUpDown TextBox, DomainUpDown, NumericUpDown | Щелкните Click | Щелкните, DoubleClick Click, DoubleClick | нет none | нет none | нет none | нет none | нет none | нет none | нет none | нет none |
* TreeView, * ListView * TreeView, * ListView | Щелкните Click | Щелкните, DoubleClick Click, DoubleClick | Щелкните Click | Щелкните, DoubleClick Click, DoubleClick | нет none | нет none | нет none | нет none | нет none | нет none |
ProgressBar, TrackBar ProgressBar, TrackBar | Щелкните Click | Щелкните, щелкните Click, Click | Щелкните Click | Щелкните, щелкните Click, Click | Щелкните Click | Щелкните, щелкните Click, Click | Щелкните Click | Щелкните, щелкните Click, Click | Щелкните Click | Щелкните, щелкните Click, Click |
Form, DataGrid, Label, LinkLabel, Panel, GroupBox, PictureBox, Splitter, StatusBar, ToolBar, TabPage, ** TabControl Form, DataGrid, Label, LinkLabel, Panel, GroupBox, PictureBox, Splitter, StatusBar, ToolBar, TabPage, ** TabControl | Щелкните Click | Щелкните, DoubleClick Click, DoubleClick | Щелкните Click | Щелкните, DoubleClick Click, DoubleClick | Щелкните Click | Щелкните, DoubleClick Click, DoubleClick | Щелкните Click | Щелкните, DoubleClick Click, DoubleClick | Щелкните Click | Щелкните, DoubleClick Click, DoubleClick |
* Указатель мыши должен находиться над дочерним объектом ( TreeNode или ListViewItem ). * The mouse pointer must be over a child object (TreeNode or ListViewItem).
* * В TabControl коллекции должен быть по крайней мере один TabPage TabPages . ** The TabControl must have at least one TabPage in its TabPages collection.
Right click on mouse not working in Windows 10
- Not being able to use your mouse buttons can severely hinder how much you can use it.
- If your mouse has a broken right-click button, check out the steps written below.
- We have plenty of other guides covering the same subjects on our Peripherals Fix page.
- Our Troubleshooting section is also a great source of helpful articles that you should read!
- Download Restoro PC Repair Tool that comes with Patented Technologies (patent available here).
- Click Start Scan to find Windows issues that could be causing PC problems.
- Click Repair All to fix issues affecting your computer’s security and performance
- Restoro has been downloaded by 0 readers this month.
Is your right-click not working? Without it, none of the context menus can open in Windows. Or, if you are experiencing the issue, it might be limited to the Start menu, desktop or File Explorer.
Below are some ways to fix non-working right-click context menus in Windows 10.
What can I do if my right-click isn’t working in Windows 10?
There are various manifestations of this issue. Here are the most common ones:
- Right-click not working on Windows 7, 8.1 and Windows 10 — Although this troubleshooting guide is aimed at fixing right-click issues on Windows 10, it is worth mentioning that all the other Windows OS versions are also affected by this problem. As a result, you can use the workarounds listed here on other Windows versions as well.
- Right-click not working in Excel — Judging by user reports, it seems that right-click bugs are more frequent in Excel than in other programs of the Office Suite. Of course, when right-click is not available in Excel this leads to a series of function limitations on spreadsheets.
- Right click won’t work on Chrome, Firefox, Edge, Opera and other browsers — If right-click fails on your browser, check for updates and install the latest browser version available. If this solution fails to fix the problem, follow the troubleshooting steps listed below.
- Right-click won’t work on laptop, desktop, tablet — As you can see, this issue affect all types of devices, although it seems that it occurs more frequently on laptops.
To fix the issues listed above, as well as other right-click mouse problems, follow the instructions below.
1. Update the mouse driver
- Press the Cortana button on the taskbar and input Device Manager in its search box.
- Select to open the Device Manager shown below.
- Click Mice and other pointing devices to expand those peripherals.
- Double left-click your mouse (the device might have a yellow exclamation mark indicator) to open its Properties window and click the Driver tab.
- Click Update Driver to open the window shown below.
- Select the Search automatically for updated driver software option from there.
It might also be worth checking for mouse driver updates. If the mouse doesn’t have the most up-to-date driver, updating it could do the trick.
Update drivers automatically using a dedicated tool
Updating drivers is a tedious process and we suggest to do it automatically by using DriverFix. Thus, you will keep your system away from permanent damage by downloading and installing the wrong driver versions.
After several tests, our team concluded that this is the best-automatized solution. Below you can find a quick guide on how to do it.
- Download and install DriverFix
- Launch it and let it scan your system for all of your drivers
- Select from the list of outdated, broken, and missing drivers that DriverFix found
- Wait for the tool to download and install them for you
- Restart your PC.
DriverFix
2. Check the mouse
- Click the Cortana button on Windows taskbar and input ‘hardware and devices’ in the search box.
- Select Find and fix problems with devices to open the window below.
- Press the Next button to scan.
- The troubleshooter will report any detected hardware and device issues back to you with a list from which you can select devices to fix.
- Select your mouse if it’s listed, and press the Next button.
The first thing to check is that your mouse is not in any way broken. The best way to do so is to plug the mouse into another laptop or desktop to see if its right-click works.
If you have a wireless mouse, replace its batteries with fresh ones.
3. Switch off Tablet Mode
The right-click button doesn’t always work in Tablet Mode, so switching it off if it happens to be enabled might do the trick.
The quick way to toggle Tablet Mode on/off is to press the Win key + A, which will open the Action Center sidebar shown below. That includes a Tablet mode button that you can press to toggle Tablet Mode on/off.
Press that button to switch Tablet Mode off.
4. Delete third-party shell extensions
- Press the Download button on this website page to add CCleaner to Windows.
- Open CCleaner and click Tools >Startup and the Context Menu tab to open a list of shell extensions as shown directly below.
- Now, you can either disable or delete the shell extensions. If you want to keep some of them, select all the third-party shell extensions and press the Disable button.
- Alternatively, press the Delete button to erase shell extensions.
- ShellExView is another utility you can disable shell extensions with which you can add to most Windows platforms from this page.
- Open ShellExView as an administrator by selecting its shortcut and pressing the Ctrl + Shift + Enter hotkey.
- You can click Options >Filter by Extension Type >Context Menu to open a list of third-party shell extensions.
- Select all the pink third-party shell extensions by holding the Ctrl key and click the red button to disable them.
- Click Options on the ShellExView menu bar again and select Restart Explorer to restart the Windows Shell, which a third-party program might have corrupted.
Third-party programs add their own options to the context menu called shell extensions. As such, it could be that a third-party shell extension is preventing the context menu opening and deleting them might fix the right-click context menu.
5. Restart Windows (File) Explorer
- If it’s the case that right-click context menus aren’t opening specifically in File Explorer, restarting Explorer with the Task Manager might do the trick.
- Open Task Manager by pressing the Ctrl + Alt + Del hotkey and select Task Manager.
- Click the Processes tab in Task Manager.
- Windows Explorer is listed under Windows processes.
- Select Windows Explorer and press its Restart button.
6. Check Group Policy’s Remove Windows Explorer’s default context menu
- First, press the Win key + R to open Run and input gpedit.msc in the text box to open the Local Group Policy Editor window.
- Click User Configuration >Administrative Templates >Windows Components and File Explorer on the left of the Group Policy Editor window.
- Double-click the Remove Windows Explorer’s default context menu option to open its window.
- If the option is enabled, click the Disabled radio button.
- Press Apply and OK to close the window.
- Reboot your laptop or desktop.
The Group Policy Editor has a Remove Windows Explorer’s default context menu option that disables the context menu if selected.
So, if you’re using either Windows 10 Enterprise or Pro, which include the Local Group Policy Editor, check that this option is not selected.
Most Windows 10 users have no idea how to edit the Group Policy. Learn how you can do it by reading this simple article .
7. Run the System File Checker
- Press the Win key + X hotkey and selectCommand Prompt (Admin) to open the window below.
- Then input sfc /scannow in the Command Prompt and press Enter.
- The scan will probably take about 15 to 20 minutes.
- If it fixes anything, Command Prompt text will state, Windows Resource Protection found corrupt files and successfully repaired them.
- Restart Windows if SFC does fix files.
System File Checker, otherwise known as SFC scannow, is a handy tool that fixes corrupt system files, some of which may be at the root of a non-working right-click.
If you’re having trouble accessing Command Prompt as an admin, then you better take a closer look at this guide .