Set handles of another GUI?

4 次查看(过去 30 天)
Hi,
Is there a way to set handles of another GUI? I have a main GUI which prompt a sub GUI. In the sub GUI,when a button is pressed and it will set the main GUI visible off.
set(handles.fig1,'Visible','off');
I place this code on the the button of my sub GUI. fig1 is the handles of my main GUI. However to code has error because the sub GUI doesnt know the handles fig1.

采纳的回答

Walter Roberson
Walter Roberson 2011-7-16
Set the Tag parameter for the main GUI's figure, and then in the sub-GUI
handles.fig1 = findobj(0,'Type','figure','Tag','TheTagYouSet');
  7 个评论
Walter Roberson
Walter Roberson 2018-12-27
Try
close('all')
now run your program again and see what comes up.
If it still shows multiple items in hgui1 then try
hgui1 = unique(findobj('Tag','gui1'))
If that still returns multiple entries, please show the output of
struct2cell(get(hgui1))
Le Dung
Le Dung 2018-12-28
编辑:Le Dung 2018-12-28
dear walter.
thank you again for your reply.
its very kind of you.
i don’t know why matlab return a array that has many figures.
but, i solved my problem when i use:
gui1data = guidata(hgui1(1)).
my code worked ok

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Interactive Control and Callbacks 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by