How to put GUI in multiple files?

1 visualización (últimos 30 días)
han han
han han el 24 de Jul. de 2020
Respondida: Walter Roberson el 24 de Jul. de 2020
I am creating a GUI and have an idea
Can I integrate multiple .m into one GUI (.fig)?
Currently I can only make my GUI through the .fig and .m files created by "guide".
But I want to split the main .m into several parts
Is there any way?

Respuestas (1)

Walter Roberson
Walter Roberson el 24 de Jul. de 2020
Yes, that is definitely possible.
For GUIDE, the main limitation is that the callbacks that GUIDE generates must be to routines that are inside the primary .m file or which have their own .m file. You cannot create a "library file" of multiple functions that are to be called as callbacks.
Also, if you create your own callbacks, then GUIDE can mess up on managing them.
It can typically turn out to be easiest to let GUIDE create its own callbacks and to create its own function headers in the main .m file, but then to just have at function call the function that actually implements what you want to do
function pushbutton3_Callback(hObject, event, handles)
pushbutton3_Callback_impl(hObject, event, handles)
end
with file pushbutton3_Callback_impl.m for example.

Categorías

Más información sobre Migrate GUIDE 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