Borrar filtros
Borrar filtros

to write a code for esc key

9 visualizaciones (últimos 30 días)
PA
PA el 7 de Jul. de 2022
Editada: Prathamesh Kulkarni el 7 de Jul. de 2022
how to write a code for when we press the esc key from keyboard it close for uifigure

Respuestas (1)

Prathamesh Kulkarni
Prathamesh Kulkarni el 7 de Jul. de 2022
I understand you want to close uifigure after pressing escape key.
For that you can set the KeyPressFcn property of the uifigure as a function eg. keycall
and then check if the pressed key is escape, if it is then you can use close() command.
a = uifigure;
set(a,'KeyPressFcn',@keycall)
function keycall(a, e)
if isequal(e.Key, 'escape')
close(a);
end
end
  2 comentarios
PA
PA el 7 de Jul. de 2022
Thanks and can i use keyReleaseFcn?
Prathamesh Kulkarni
Prathamesh Kulkarni el 7 de Jul. de 2022
Editada: Prathamesh Kulkarni el 7 de Jul. de 2022
Yes you can use key release function as well.
This documentation will give you idea about the feature and implementation of both functions.

Iniciar sesión para comentar.

Categorías

Más información sobre Develop uifigure-Based Apps en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by