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.
0 件のコメント
回答 (2 件)
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
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:
Image Analyst
2012 年 12 月 4 日
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?
参考
カテゴリ
Help Center および File Exchange で Migrate GUIDE Apps についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!