How to copy figure children into uipanel

조회 수: 19 (최근 30일)
Munie Ahmad
Munie Ahmad 2014년 5월 15일
댓글: Munie Ahmad 2014년 5월 16일
Hi,
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.

채택된 답변

Benjamin Avants
Benjamin Avants 2014년 5월 15일
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.
  댓글 수: 1
Munie Ahmad
Munie Ahmad 2014년 5월 16일
Hi Ben, Thank you very much for your answer. It does solves the problem, but I used findall 'axes' instead:
uicontrols = findall(hf,'Type','axes','Parent',hf)
Then copyobj works smoothly. Thanks again!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by