MATLAB:如何使用findobj-Function在两个GUI之间传递数据?

时间:2015-09-14 11:42:56

标签: matlab user-interface checkbox handles

我是使用Matlab创建GUI的新手。我有一个MainGui,我打开一个Subgui,以便用户可以单击复选框。单击okay-Button后,我的Subgui关闭,再次看到MainGui-surface。

如何在不使用getappdata和setappdata 的情况下访问click键值,而在中使用findobj-function 访问,这对我来说更容易。

所以我在MainGui代码中,我用

寻找Subgui
 hGui = findobj('Tag','Subgui');

其中'Subgui'是SubGUI的Tag属性的值。 !!

处理可见性
    % get control handles for this GUI
    handlesSubgui = guidata(hGui);

    % now read the data from the checkbox
    checkValue = get(handlesSubgui.checkbox1,'Value');

为什么它不起作用?我设置了正确的标签,并且处理了visilility,但是我得到了

hGui =

     Empty matrix: 0-by-1

!?

有人有想法吗?我很乐意得到帮助! 最好的问候,约翰

1 个答案:

答案 0 :(得分:0)

对于这种情况,需要考虑的一个选项是在按钮回调中初始化一个小GUI。为了说明,我将设置一个程序化的GUI:

function testcode
res = get(0,'ScreenSize');
figdim = [300 300]; % Figure size, pixels

h.mainfig = figure( ...
    'Units', 'Pixels', ...
    'Position', [(res(3) - figdim(1))/2 (res(4) - figdim(2))/2 figdim(1) figdim(2)], ...
    'Name', 'This is the Main GUI', ...
    'Resize', 'off', ...
    'DockControls', 'off', ...
    'NumberTitle', 'off', ...
    'MenuBar', 'none', ...
    'Toolbar', 'none' ...
    );

h.subGUIbutton = uicontrol( ...
    'Parent', h.mainfig, ...
    'Units', 'Normalized', ...
    'Position', [0.25 0.6 0.5 0.3], ...
    'String', 'Open Checkbox GUI' ...
    );

h.displaydatabutton = uicontrol( ...
    'Parent', h.mainfig, ...
    'Units', 'Normalized', ...
    'Position', [0.25 0.1 0.5 0.3], ...
    'String', 'Display Checkbox Selections' ...
    );

% Requires R2014b or newer, otherwise we'll have to use set
try
    h.subGUIbutton.Callback = {@checkboxGUI, h};
    h.displaydatabutton.Callback = {@displaydata, h};
catch
    set(h.subGUIbutton, 'Callback', {@checkboxGUI, h});
    set(h.displaydatabutton, 'Callback', {@displaydata, h});
end

我们的回调将采用以下结构:

function checkboxGUI(~, ~, handles)
res = get(0,'ScreenSize');
figdim = [200 200]; % Figure size, pixels
h2.mainfig = figure( ...
    'Units', 'Pixels', ...
    'Position', [(res(3) - figdim(1))/2 (res(4) - figdim(2))/2 figdim(1) figdim(2)], ...
    'Name', 'This is the Sub GUI', ...
    'Resize', 'off', ...
    'DockControls', 'off', ...
    'NumberTitle', 'off', ...
    'MenuBar', 'none', ...
    'Toolbar', 'none' ...
    );

% Build some checkboxes
for ii = 1:4
    h2.checkbox(ii) = uicontrol( ...
        'Parent', h2.mainfig, ...
        'Style', 'checkbox', ...
        'Units', 'Normalized', ...
        'Position', [0.25 (1 - ii*0.15) 0.5 0.1], ...
        'String', sprintf('Checkbox #%u', ii) ...
        );
end

h2.closebutton = uicontrol( ...
    'Parent', h2.mainfig, ...
    'Style', 'pushbutton', ...
    'Units', 'Normalized', ...
    'Position', [0.25 0.15 0.5 0.1], ...
    'String', 'Accept Changes', ...
    'Callback', {@closecheckbox} ...
    );

    function closecheckbox(~, ~)
        % requires R2014b or newer for dot notation
        try
            test = find([h2.checkbox(:).Value]); % Returns ID of checked boxes
        catch
            test = find(cell2mat(get(h2.checkbox(:), 'Value'))'); % Returns ID of checked boxes
        setappdata(handles.mainfig, 'BoxesChecked', test);
        close(h2.mainfig);
    end

waitfor(h2.mainfig); % Wait for user to close the checkbox GUI
end

function displaydata(~, ~, handles)
BoxesChecked = getappdata(handles.mainfig, 'BoxesChecked');

if isempty(BoxesChecked)
    fprintf('No boxes celected\n');
else
    fprintf('User selected box: %d\n', BoxesChecked);
end
end

请注意,我已使用nested function来提高可读性。在这个简单的例子中,我们在主GUI中有两个按钮,一个用于打开用户提示的按钮,然后是一个显示按钮。当用户打开复选框提示时,所有GUI命令的执行都会暂停,直到提示关闭。单击显示按钮时,我们从应用程序数据中获取选中的值并将其打印到命令窗口。