【问题标题】:A popup menu that is linked to a uitable that changes with each option on the popup menu (Matlab)一个弹出菜单,它链接到一个随着弹出菜单上的每个选项而变化的 uitable (Matlab)
【发布时间】:2015-10-14 18:27:35
【问题描述】:

我已经创建了一个带有多个选项(鼠标 1 - 鼠标 10)的弹出式菜单的 GUI 可供选择,并且还在它旁边创建了一个 uitable。弹出菜单有多个选项可供选择。

我想在弹出菜单和 uitable 之间建立链接,以便用户选择的每个鼠标 - 一个新的 uitable 将替换前一个鼠标的前一个 uitable。

我该怎么做?

下面是相关代码,真的没什么:

function mouse_number_Callback(hObject, eventdata, handles)


function uitable1_CellEditCallback(hObject, eventdata, handles)

谢谢!

【问题讨论】:

  • 你能发布你到目前为止的代码吗?
  • 如您所说,您发布的代码没有显示任何内容。请包含更多相关代码(例如mouse_number_Callback函数内的内容)并且不要忘记使用code formatting

标签: matlab menu popup matlab-uitable


【解决方案1】:

我不确定我是否正确理解了你的意思

用户选择的每个鼠标 - 一个新的 uitable 将替换前一个鼠标的前一个 uitable

以及 GUI 的预期行为。

我设置了一个简单的 GUI,其中包含一个 table (tag: uitable1) 和一个 popupmenu (tag: popupmenu1)。

当用户在popupmenu中选择一个项目时,在table对应行中的字符串Selected

  • uitable1_CreateFcn 中,table 的内容设置为空字符串
  • popupmenu1_Callback 中标识了在popoumenu 中选择的项目的索引,并且在表格的相应行中,打印字符串Selected,并删除前一个。

这是图形用户界面的代码

function varargout = table_gui(varargin)
% TABLE_GUI MATLAB code for table_gui.fig
%      TABLE_GUI, by itself, creates a new TABLE_GUI or raises the existing
%      singleton*.
%
%      H = TABLE_GUI returns the handle to a new TABLE_GUI or the handle to
%      the existing singleton*.
%
%      TABLE_GUI('CALLBACK',hObject,eventData,handles,...) calls the local
%      function named CALLBACK in TABLE_GUI.M with the given input arguments.
%
%      TABLE_GUI('Property','Value',...) creates a new TABLE_GUI or raises the
%      existing singleton*.  Starting from the left, property value pairs are
%      applied to the GUI before table_gui_OpeningFcn gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to table_gui_OpeningFcn via varargin.
%
%      *See GUI Options on GUIDE's Tools menu.  Choose "GUI allows only one
%      instance to run (singleton)".
%
% See also: GUIDE, GUIDATA, GUIHANDLES

% Edit the above text to modify the response to help table_gui

% Last Modified by GUIDE v2.5 20-Aug-2015 17:31:24

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name',       mfilename, ...
                   'gui_Singleton',  gui_Singleton, ...
                   'gui_OpeningFcn', @table_gui_OpeningFcn, ...
                   'gui_OutputFcn',  @table_gui_OutputFcn, ...
                   'gui_LayoutFcn',  [] , ...
                   'gui_Callback',   []);
if nargin && ischar(varargin{1})
    gui_State.gui_Callback = str2func(varargin{1});
end

if nargout
    [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
    gui_mainfcn(gui_State, varargin{:});
end
% End initialization code - DO NOT EDIT


% --- Executes just before table_gui is made visible.
function table_gui_OpeningFcn(hObject, eventdata, handles, varargin)
% This function has no output args, see OutputFcn.
% hObject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
% varargin   command line arguments to table_gui (see VARARGIN)

% Choose default command line output for table_gui
handles.output = hObject;

% Update handles structure
guidata(hObject, handles);

% UIWAIT makes table_gui wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = table_gui_OutputFcn(hObject, eventdata, handles) 
% varargout  cell array for returning output args (see VARARGOUT);
% hObject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Get default command line output from handles structure
varargout{1} = handles.output;


% --- Executes on selection change in popupmenu1.
function popupmenu1_Callback(hObject, eventdata, handles)
% hObject    handle to popupmenu1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Hints: contents = cellstr(get(hObject,'String')) returns popupmenu1 contents as cell array
%        contents{get(hObject,'Value')} returns selected item from popupmenu1

% Get the index of the selected popupmenu item
sel_m=get(hObject,'value')
% Clear table content
for i=1:10
   sel_sts{i,1}='      ';
end
% If "--- Select a Mouse ---" has been selected then set table with empty
% string
if(sel_m == 1)
   set(handles.uitable1,'data',sel_sts)
else
% If a "Mouse" has been selected then set "Selected" in the corresponding
% cell of the table
   sel_sts{sel_m - 1,1}='Selected';
   set(handles.uitable1,'data',sel_sts)
end

% --- Executes during object creation, after setting all properties.
function popupmenu1_CreateFcn(hObject, eventdata, handles)
% hObject    handle to popupmenu1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: popupmenu controls usually have a white background on Windows.
%       See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
    set(hObject,'BackgroundColor','white');
end


% --- Executes during object creation, after setting all properties.
function uitable1_CreateFcn(hObject, eventdata, handles)
% hObject    handle to uitable1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Initialize table content with empty string
for i=1:10
   sel_sts{i,1}='      ';
end
set(hObject,'data',sel_sts);

希望这会有所帮助。

【讨论】:

  • 哇!多么详细的答案!所以首先,非常感谢你在我的回答中投入了这么多。这几乎得到了我想要的:弹出菜单正是我想要的,但是该表应该是每个鼠标的全新表,而不仅仅是每个鼠标的不同行。我的意思是我收集数据并分别为每只鼠标填写整个表格。但是,无论如何,您的代码都有我需要的一切,所以我将对其进行一些修改。再次非常感谢,这真的很有帮助!尤塔姆
  • 不客气!实际上,我不清楚“新表”是什么意思。也许您可能想“接受”答案:-)
猜你喜欢
  • 2016-04-15
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2011-06-23
  • 1970-01-01
  • 1970-01-01
  • 2011-06-13
相关资源
最近更新 更多