Is 'Ctrl' key pressed while clicking a button?

后端 未结 2 1131
粉色の甜心
粉色の甜心 2021-02-20 14:46

I need to know whether the user is holding down the ctrl key while clicking a button. Since it\'s a button and not a figure I cannot use \'selectionType\' on the figu

2条回答
  •  暖寄归人
    2021-02-20 15:40

    How about this:

    modifiers = get(gcf,'currentModifier');        %(Use an actual figure number if known)
    ctrlIsPressed = ismember('control',modifiers);
    

    The figure class has a number of useful Current* properties which are useful when handling callbacks. This is how to retrieve current mouse position, selected graphics object, and (as here) pressed keys. These include: CurrentAxes, CurrentCharacter, CurrentKey, CurrentModifier, CurrentObject, and CurrentPosition.

提交回复
热议问题