How to copy figure children into uipanel
10 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Munie Ahmad
le 15 Mai 2014
Commenté : Munie Ahmad
le 16 Mai 2014
Hi,
Referring to an answer in a post here: http://compgroups.net/comp.soft-sys.matlab/dock-figure-to-gui/421101
I created a GUI 4 years back, and it seems okay to copy children of a figure into uipanel back then, but now when I run the same GUI, I'm getting this error:
?? Error using ==> copyobj Object uimenu[21] can not be a child of parent uipanel[1]
here's the code I used:
copyobj(get(hf,'Children'),handles.result_panel);
'hf' is the figure with children that I want to copy to the uipanel (result_panel)
Examples are attached.
hf: 'resultfigure.png'
result_panel: inside 'gui.png'
I really hope someone has an answer to this, please advise. Many thanks.
Best regards.
0 commentaires
Réponse acceptée
Benjamin Avants
le 15 Mai 2014
I'd say the error is the result of trying to set the panel as a parent for an object that cannot have a panel as a parent. Knowing what type of object is causing your error should help figure out exactly what the problem is and how to avoid it.
Do you know what type of object uimenu[21] is? If the result panel only needs the labels and images, you should be able to pull those out of the list of children and only copy them. I believe all of the ui objects can be differentiated by either their 'Style' or 'Type' properties.
Maybe something like:
childObjects = get(hf,'Children');
types = get(childObjects,'Type');
uicontrolIndecies = strcmp(types,'uicontrol');
uicontrols = childObject(uicontrolIndecies);
copyobj(uicontrols,handles.result_panel);
Although you may need to manipulate the output from the get function before using strcmp...
perhaps an easier approach:
uicontrols = findall(hf,'Type','uicontrol','Parent',hf);
% Specifying the parent will remove children of children of hf from the list
copyobj(uicontrols,handles.result_panel);
If you have changed MATLAB versions since you first wrote the code, the java implementation of some of the ui objects you used may have changed, causing your error.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Migrate GUIDE Apps 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!