Verfasst am: 12.10.2012, 14:22
Titel: Eine Struktur erstellen in einer GUI
Hallo Leute,
ich habe heute mal angefangen mit GUIDE das erste mal zu arbeiten und habe festgestellt das, dass garnicht so einfach ist (für mich nicht =)).
Was ich will:
Ich habe mir eine GUI erstellt in der ich Persönliche Daten von verschiedenen Personen eingeben will.
Diese GUI soll dann automatisiert funktionieren.
Das heisst ich will Name, Alter, Beruf usw. eingeben.
Und ich will das ich evtl auf einen Button drücke und die GUI erstellt mir dann "Unterklassen" (sorry wenn ich den falschen ausdruck benutze)
Der Name der Struktur: PersoenlicheDaten
Dann soll automatisiert (wenn ich auf den Button drücke)
Person1
Person1.Name
Person1.Alter
Person1.Beruf
...usw.
Person2
...
Person3
...
... usw.
Die Guide ist so aufgebaut:
Name: Edit Text
Alter: Edit Text
Beruf: Edit Text
.
.
.
usw.
Das Problem :
1.
wenn ich in GUI das so benenne
z.B.
PersoenlicheDaten.Name
und dann PersoenlicheDaten.Alter
erstellen will überschreibt er PersoenlicheDaten.Name
wenn ich das aber so schreibe:
handles.PersoenlicheDaten.Name
handles.PersoenlicheDaten.Atler
dann passt alles.
Aber ich will es nicht in die Handles rein speichern.
2.
Wie realisiere ich Das oben angesprochene Problem mit dem Button
Das jedes Mal eine neue "Person" erstellt wird.
mein bisheriger Code:
Code:
functionvarargout = auswertung(varargin) % AUSWERTUNG M-file for Probandenauswertung.fig % AUSWERTUNG, by itself, creates a new
AUSWERTUNG or raises the existing
% singleton*.
%
% H = AUSWERTUNG returns the handle to a new
AUSWERTUNG or the handle to
% the existing singleton*.
%
% AUSWERTUNG ('CALLBACK',hObject,eventData,handles,...) calls the local
% function named CALLBACK in AUSWERTUNG.M with the given input arguments.
%
% AUSWERTUNG('Property','Value',...) creates a new
AUSWERTUNG or raises the
% existing singleton*. Starting from the left, property value pairs are % applied to the GUI before auswertung_OpeningFcn gets called. An % unrecognized property name or invalid value makes property application % stop. All inputs are passed to auswertung_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 Probandenauswertung
% Last Modified by GUIDE v2.5 12-Oct-2012 14:00:22
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @auswertung_OpeningFcn, ...
'gui_OutputFcn', @auswertung_OutputFcn, ...
'gui_LayoutFcn', [] , ...
'gui_Callback', []);
ifnargin && ischar(varargin{1})
gui_State.gui_Callback = str2func(varargin{1});
end
% --- Executes just before auswertung is made visible.
functionauswertung_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 auswertung (see VARARGIN)
% Choose default command line output for auswertung
handles.output = hObject;
% UIWAIT makes auswertung wait for user response (see UIRESUME) % uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line. functionvarargout = auswertung_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;
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
Name=(get(hObject, 'String'));
handles.PersoenlicheDaten.Name=Name;
guidata(hObject,handles)
% --- 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)
Alter=(get(hObject, 'String'));
handles.PersoenlicheDaten.Alter=Alter;
guidata(hObject,handles)
% 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)
Beruf=(get(hObject, 'String'));
handles.PersoenlicheDaten.Beruf=Beruf;
guidata(hObject,handles)
% 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
Ich danke euch schon mal im Voraus und wünsche euch ein schönes Wochenende.
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.