我创建了一个GUI,其中有一个弹出菜单,其中有几个选项(鼠标1 - 鼠标10)可供选择,并且旁边还创建了一个可用的选项。弹出菜单有几个选项可供选择。
我想在弹出菜单和uitable之间进行链接,以便用户选择的每个鼠标 - 一个新的uitable将替换之前的鼠标。
我该怎么做?
这是相关的代码,实际上没什么:
function mouse_number_Callback(hObject, eventdata, handles)
function uitable1_CellEditCallback(hObject, eventdata, handles)
谢谢!
答案 0 :(得分:0)
我不确定我是否正确理解了你用什么来解释
用户选择的每只鼠标 - 一个新的uitable将替换之前的鼠标
,反过来,GUI的预期行为。
我已经设置了一个包含table
(tag: uitable1
)和popupmenu
(tag: popupmenu1
)的简单GUI。
当用户选择popupmenu
中的项目时,table
字符串 Selected
uitable1_CreateFcn
中,table
的内容设置为空字符串popupmenu1_Callback
中识别出popoumenu
中所选项目的索引,并在表格的相应行中打印字符串 Selected 一个被删除。这是GUI的代码
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);
希望这有帮助。