我在MATLAB中有三个GUI。每个标记都是'P0'
,'P1'
和'P2'
。我想将所有三个GUI的句柄放在一个结构中,并能够从三个GUI中的任何一个获取此结构并更新其中的值。实现这一目标的最佳方法是什么?
答案 0 :(得分:5)
您有几个选项可以做到这一点。一种方法是使用根图形对象以及setappdata
和getappdata
来存储和检索值。
fig0 = findall(0, 'tag', 'P0');
fig1 = findall(0, 'tag', 'P1');
fig2 = findall(0, 'tag', 'P2');
% Combine the GUIdata into a single struct
handles.P0 = guidata(fig0);
handles.P1 = guidata(fig1);
handles.P2 = guidata(fig2);
% Store this struct in the root object where ALL GUIs can access it
setappdata(0, 'myappdata', handles);
然后,在您的回调中,您只需获取此结构并直接使用
function mycallback(hObject, evnt, ~)
% Ignore the handles that is passed in and use your own
handles = getappdata(0, 'myappdata');
% Now if you modify it, you MUST save it again
handles.P0.value = 1;
setappdata(0, 'myappdata', handles)
end
另一种选择是使用handle
class来存储您的值,然后您可以在每个GUI的handles
结构中将引用存储到此句柄类。当您对此结构进行更改时,更改将反映在所有GUI中。
执行此操作的简单方法是使用structobj
(免责声明:我是开发人员),它会将任何struct
转换为handle
对象。
% Create an object that looks like a struct but is a handle class and fill it with the
% handles struct from each GUI
handles = structobj(guidata(fig0));
update(handles, guidata(fig1));
update(handles, guidata(fig2));
% Now store this in the guidata of each figure
guidata([fig0, fig1, fig2], handles)
由于我们在图的guidata
中存储了一个东西,它会自动通过标准的handles
输入参数传递给你的回调。所以现在你的回调看起来像是:
function mycallback(hObject, evnt, handles)
% Access the data you had stored
old_thing = handles.your_thing;
% Update the value (changes will propagate across ALL GUIs)
handles.your_thing = 2;
end
这种方法的好处是,您可以同时运行三个GUI的多个实例,并且数据不会相互干扰。