C # Visual Studio Open context menus in another way?

Normal context menus in Visual Studio always appear directly on the mouse after they are opened. Is it possible for the context menu to appear to the left of the mouse after opening it? Therefore, it actually opens from right to left, and from left to right.

I hope you know what I mean. (And no, the text in it does NOT mean that this is how the context menu opens). I could not find anything. It is just for aesthetics.

+4
source share
1 answer

This is a new ergonomic feature in Windows. Windows checks if you are using a touch screen, the menu will open on the left side, the reason is that the human hand cover is on the right side of the zone pressed / pressed (the mouse pointer does not do this).

----------------------------------------------- --- Update ---------------------------------------------- --- ------------

I found my essence for myself :-) you need to select Tablet PC settings Left hand drive , this will solve your problem.

  • Press the Windows logo key + R to open the Run dialog box. In the line "Open" copy / paste the following text.

  • shell: {80F3F1D5-FECA-45F3-BC32-752C152E456E}

  • Click OK.

This will launch the tablet settings dialog (even if you don’t have a tablet).

  1. Select the "Other" tab.

  2. In the "Handedness" section, select the checkbox in the left hand.

  3. Click OK.

Look at this information from Microsoft: http://answers.microsoft.com/en-us/windows/forum/windows_7-desktop/windows-7-application-menus-drop-to-left-instead/2d362701-90e4-4ea6 -a3a1-c1391a3d2bea

Do not forget to mark the answer.

+13
source

Source: https://habr.com/ru/post/1500814/


All Articles