create main panel and create sub panel on main panel. in subpanel one close button. when we press close button than main panel and subpanel go closed.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
praveen chandaliya
el 17 de Sept. de 2017
Respondida: Walter Roberson
el 18 de Sept. de 2017
create main panel and create sub panel on main panel. in subpanel one close button. when we press close button than main panel and subpanel go closed.
i have enclosed GUI IMAGE
1 comentario
Respuestas (1)
Walter Roberson
el 18 de Sept. de 2017
outer = uipanel()
inner = uipanel('Parent', outer)
but = uicontrol('style', 'push', 'Callback', @(src, event) delete(outer) )
0 comentarios
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!