How can we achieve interfacing of two GUI's?

1 次查看(过去 30 天)
Dear Sir/Madam Here i am trying to do interfacing of two gui's. I have made several gui's. My need is i.e if i click some push button it should open some other gui. Please tell me how to use setappdata and add any sample code. Please find the answer.

回答(2 个)

Mark Whirdy
Mark Whirdy 2012-12-4
编辑:Mark Whirdy 2012-12-4
if you just put the name of gui2 inside the callback of the pushbutton of gui1, then gui2 does not open?
gui1_mybutton_callback(hobject,evnts,handles)
gui2;
use setappdata to pass data for more complex interation then
  3 个评论
Mark Whirdy
Mark Whirdy 2012-12-4
编辑:Mark Whirdy 2012-12-4
Its difficult to provide sample code without a more specific question where you provide code of your own which I could adapt my example code to. I think we're at the stage of doing some initial background reading. Broadly, you need to work with the handle to gui2 (as launched from the callback above), and then be using get() & set(), & getappdata() & setappdata() to manipulate the object properties of both gui's and store any data directly to the root for sharing as appropriate.
e.g.
setappdata(0,'my_variable',23) % set variable "my_variable" with value 23 to the root [i.e. 0 indicates the root]
Structures are handy in some cases:
mystruct.myval = 23;
setappdata(0,'mystruct',mystruct) ;
clear mystruct
mystruct = getappdata(0,'mystruct') ;
The links below will help further:
Kishor KS
Kishor KS 2012-12-4
编辑:Kishor KS 2012-12-4
Thank you sir, i got the answer , i am very happy about the very very quick response from your side , thanks a lot

请先登录,再进行评论。


Image Analyst
Image Analyst 2012-12-4
See the end of this section of the FAQ where it refers you to Doug's tutorials.
It's also not clear if you want one GUI to actually control another GUI, like change images, text, and plots on it, or if you just want to launch the second GUI, have the user interact with it, and then return values back to the first GUI. Which is it?
  1 个评论
Kishor KS
Kishor KS 2012-12-4
编辑:Kishor KS 2012-12-4
@image analyst Thank you, Basically i need to know how one gui is controlled by another gui with interaction between them along with returned values
I just want to launch the second gui from first gui.

请先登录,再进行评论。

类别

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