How to share variables across GUIs?
3 次查看(过去 30 天)
显示 更早的评论
As it said in title,there is a variant Num1 in GUI1, I hope that in GUI2 Num1 can changged, how ? Thank you!
2 个评论
Jan
2012-11-21
What does "variant Num1 in GUI1" exactly mean? Is this the tag of an uicontrol, a variable in the application data set by guidata() or a field in a struct stored in the UserData?
采纳的回答
Arthur
2012-11-21
I prefer to store and share data with the function setappdata and getappdata. This is, in my opinion, more clear and better structured.
0 个评论
更多回答(1 个)
Walter Roberson
2012-11-21
If you used GUIDE, you need to use guidata() on the figure number for GUI2 in order to get GUI2's handle structure in GUI1. Then you can change things in the normal way. For example,
handles2 = guidata(GUI2_figure);
set(handles2.Num1, 'Value', get(handles.Num1, 'Value'))
另请参阅
类别
在 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!