Verfasst am: 23.04.2012, 20:13
Titel: brauche Starthilfe bei der erstellung einer GUI
hallo,
ich versuche gerade ein GUI mit einer Grafikausgabe 3 edittexten und einem button zu erstellen, leider bin ich nach dem erstellen der elemente überfordert, wo muss ich jetzt eingeben was ich machen will, bzw. wie sag ich das der wert von feld a meine x variable ist..etc....
bei mir siehts so aus und ich weiß einfach nicht wo ich da was hinschreiben muss...
Code:
functionvarargout = Bedienfeld_Aufgabe_A(varargin) % BEDIENFELD_AUFGABE_A MATLAB code for Bedienfeld_Aufgabe_A.fig % BEDIENFELD_AUFGABE_A, by itself, creates a new BEDIENFELD_AUFGABE_A or raises the existing % singleton*.
%
% H = BEDIENFELD_AUFGABE_A returns the handle to a new BEDIENFELD_AUFGABE_A or the handle to % the existing singleton*.
%
% BEDIENFELD_AUFGABE_A('CALLBACK',hObject,eventData,handles,...) calls the local % function named CALLBACK in BEDIENFELD_AUFGABE_A.M with the given input arguments.
%
% BEDIENFELD_AUFGABE_A('Property','Value',...) creates a new BEDIENFELD_AUFGABE_A or raises the % existing singleton*. Starting from the left, property value pairs are % applied to the GUI before Bedienfeld_Aufgabe_A_OpeningFcn gets called. An % unrecognized property name or invalid value makes property application % stop. All inputs are passed to Bedienfeld_Aufgabe_A_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 Bedienfeld_Aufgabe_A
% Last Modified by GUIDE v2.5 16-Apr-2012 21:26:40
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @Bedienfeld_Aufgabe_A_OpeningFcn, ...
'gui_OutputFcn', @Bedienfeld_Aufgabe_A_OutputFcn, ...
'gui_LayoutFcn', [] , ...
'gui_Callback', []);
ifnargin && ischar(varargin{1})
gui_State.gui_Callback = str2func(varargin{1});
end
% --- Executes just before Bedienfeld_Aufgabe_A is made visible. function Bedienfeld_Aufgabe_A_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 Bedienfeld_Aufgabe_A (see VARARGIN)
% Choose default command line output for Bedienfeld_Aufgabe_A
handles.output = hObject;
% UIWAIT makes Bedienfeld_Aufgabe_A wait for user response (see UIRESUME) % uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line. functionvarargout = Bedienfeld_Aufgabe_A_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)
function edit1_Callback(hObject, eventdata, handles) % hObject handle to edit1 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of edit1 as text % str2double(get(hObject,'String')) returns contents of edit1 as a double
% --- Executes during object creation, after setting all properties. function edit1_CreateFcn(hObject, eventdata, handles) % hObject handle to edit1 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles empty - handles not created until after all CreateFcns called
% Hint: edit 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
function edit2_Callback(hObject, eventdata, handles) % hObject handle to edit2 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of edit2 as text % str2double(get(hObject,'String')) returns contents of edit2 as a double
% --- Executes during object creation, after setting all properties. function edit2_CreateFcn(hObject, eventdata, handles) % hObject handle to edit2 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles empty - handles not created until after all CreateFcns called
% Hint: edit 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
function edit3_Callback(hObject, eventdata, handles) % hObject handle to edit3 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of edit3 as text % str2double(get(hObject,'String')) returns contents of edit3 as a double
% --- Executes during object creation, after setting all properties. function edit3_CreateFcn(hObject, eventdata, handles) % hObject handle to edit3 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles empty - handles not created until after all CreateFcns called
% Hint: edit 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
function edit4_Callback(hObject, eventdata, handles) % hObject handle to edit4 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of edit4 as text % str2double(get(hObject,'String')) returns contents of edit4 as a double
% --- Executes during object creation, after setting all properties. function edit4_CreateFcn(hObject, eventdata, handles) % hObject handle to edit4 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles empty - handles not created until after all CreateFcns called
% Hint: edit 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 hast die GUI ja mit GUIDE erstellt. Jetzt geh mal auf ein Element, dann Rechts-Klick --> View Callbacks --> Callback. Da musst du im Code das eintragen, was gemacht werden soll.
Du kannst auch die von GUIDE vorgegebenen Kommentare als Hilfestellung verwenden. Bei einem editierbaren Textfeld liest man z.B. meist zunächst den eingegebenen Wert aus.
danke für die antwort, könntest du mir ein beispiel geben was da für hobject,
eventdata und hanles eingetragen werden müsste!?
wenn ich aus dem feld den wert übernehmen möchte sag ich dann einfach
für hobject das dieser wert jetzt mein WF ist?
Die Ausführung des passenden Codes passiert automatisch.
Es empfiehlt sich, mal Tutorials oder die Doku durchzuarbeiten.
Grüße,
Harald
Einstellungen und Berechtigungen
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.