How do I make a uibutton the 'active' item in a GUI upon construction?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Alan Bindemann
le 22 Juin 2023
Commenté : Kevin Holly
le 23 Juin 2023
I would like to have a button on an appDesigner GUI that is highlighted upon opening, giving the user the option of quickly dismissing the GUI by pressing the Enter Key or Spacebar.
If the GUI has the button as the first element, I can hit tab, then spacebar/enter to trigger the callback, but I would like a single keypress option. Does anyone know of a way to do this?
Thanks!
0 commentaires
Réponse acceptée
Kevin Holly
le 23 Juin 2023
Modifié(e) : Kevin Holly
le 23 Juin 2023
Below would work for R2022a and later.
You can add
focus(app.Button)
to the startup function. To add a startup function, click Callback on the toolstrip while in Code View.
2 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Startup and Shutdown dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!