Verfasst am: 26.09.2011, 13:05
Titel: Kombination Radiobutton und PopupMenü
Hallo,
ich will in einem GUI Radiobuttons und ein Popupmenü kombinieren.
Also ich habe 2 Radiobutton und 2 Auswahlmöglichkeiten bei einem Popupmenü.
Durch eine PushButton wird dann eine Grafik ausgegeben.
Soweit funktioniert alles.
Habe jetzt nur das Problem wenn ich einen Radiobutton aktiviert habe und eine Änderung im Popupmenü vornehme, die Änderung des Popupmenüs erst angenommen wird wenn ich auch einen Switch bei den Radiobuttons machen.
Weiß hier jemand Abhilfe wie ich ohne den Radiobutton zu ändern, also nur das Popupmenü eine veränderte Grafik über den Pushbutton ausgeben kann?
Hier wäre der Beispielcode:
Code:
% --- Executes just before Matlab_Test_Kombi_v1 is made visible. function Matlab_Test_Kombi_v1_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 Matlab_Test_Kombi_v1 (see VARARGIN)
% Choose default command line output for Matlab_Test_Kombi_v1
handles.output = hObject;
%set(handles.radiobutton1,'Value',1);
% UIWAIT makes Matlab_Test_Kombi_v1 wait for user response (see UIRESUME) % uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line. functionvarargout = Matlab_Test_Kombi_v1_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 button press in pushbutton1. function pushbutton1_Callback(hObject, eventdata, handles) % hObject handle to pushbutton1 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) plot(handles.x, handles.y);
guidata(hObject, handles);
% --- Executes when selected object is changed in uipanel2. function uipanel2_SelectionChangeFcn(hObject, eventdata, handles) % hObject handle to the selected object in uipanel2 % eventdata structure with the following fields (see UIBUTTONGROUP) % EventName: string 'SelectionChanged' (read only) % OldValue: handle of the previously selected object or empty if none was selected % NewValue: handle of the currently selected object % handles structure with handles and user data (see GUIDATA) switchget(hObject, 'Tag') case 'radiobutton1'
% --- Executes on selection change in popupmenu2. function popupmenu2_Callback(hObject, eventdata, handles) % hObject handle to popupmenu2 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA)
% Hints: contents = get(hObject,'String') returns popupmenu2 contents as cell array % contents{get(hObject,'Value')} returns selected item from popupmenu2
val = get(hObject,'Value');
str = get(hObject,'String');
switch str{val};
case 'Aufgabe1'
handles.x = 1:1:10;
case 'Aufgabe2'
handles.x = 1:1:20;
% --- Executes during object creation, after setting all properties. function popupmenu2_CreateFcn(hObject, eventdata, handles) % hObject handle to popupmenu2 (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. ifispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor','white');
end
Du kannst Beiträge in dieses Forum schreiben. Du kannst auf Beiträge in diesem Forum antworten. Du kannst deine Beiträge in diesem Forum nicht bearbeiten. Du kannst deine Beiträge in diesem Forum nicht löschen. Du kannst an Umfragen in diesem Forum nicht mitmachen. Du kannst Dateien in diesem Forum posten Du kannst Dateien in diesem Forum herunterladen
MATLAB, Simulink, Stateflow, Handle Graphics, Real-Time Workshop, SimBiology, SimHydraulics, SimEvents, and xPC TargetBox are registered trademarks and The MathWorks, the L-shaped membrane logo, and Embedded MATLAB are trademarks of The MathWorks, Inc.