How to write function for panel in App Designer?

14 visualizaciones (últimos 30 días)
SRUSHTI KHATAU
SRUSHTI KHATAU el 31 de Oct. de 2021
Comentada: SRUSHTI KHATAU el 15 de Nov. de 2021
I want to write a code for when any of the button from particular panel in App Designer is being selected then it will print that 'panel 1 is selected'

Respuestas (1)

Alamanda Ponappa Poovaya
Alamanda Ponappa Poovaya el 3 de Nov. de 2021
You can access the panel a button was present in using the Parent property.
Firstly, give each panel an appropriate title in the component browser. Let's assume you have a panel called 'Panel One'.
In the ButtonPushed callback for every button, add the following 3 lines
s = event.Source.Parent.Title; % s = 'Panel One'
k = strcat(s, ' is selected');
disp(k)
Now when you click on the button, 'Panel One is selected' will be rpinted out to the command window.
  3 comentarios
Alamanda Ponappa Poovaya
Alamanda Ponappa Poovaya el 12 de Nov. de 2021
You can refer to this link below, it has everything you need about app designer
Specifically to learn about events, refer below
SRUSHTI KHATAU
SRUSHTI KHATAU el 15 de Nov. de 2021
Thank you.

Iniciar sesión para comentar.

Categorías

Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by