WICHTIG: Der Betrieb von goMatlab.de wird privat finanziert fortgesetzt. - Mehr Infos...

Mein MATLAB Forum - goMatlab.de

Mein MATLAB Forum

 
Gast > Registrieren       Autologin?   

Partner:




Forum
      Option
[Erweitert]
  • Diese Seite per Mail weiterempfehlen
     


Gehe zu:  
Neues Thema eröffnen Neue Antwort erstellen

Eine Struktur erstellen in einer GUI

 

Various

Gast


Beiträge: ---
Anmeldedatum: ---
Wohnort: ---
Version: ---
     Beitrag Verfasst am: 12.10.2012, 14:22     Titel: Eine Struktur erstellen in einer GUI
  Antworten mit Zitat      
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:

function varargout = 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',   []);
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 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;

% Update handles structure
guidata(hObject, handles);

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


% --- Outputs from this function are returned to the command line.
function varargout =  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.
if ispc && 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.
if ispc && 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.
if ispc && 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.


Neues Thema eröffnen Neue Antwort erstellen



Einstellungen und Berechtigungen
Beiträge der letzten Zeit anzeigen:

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
.





 Impressum  | Nutzungsbedingungen  | Datenschutz | FAQ | goMatlab RSS Button RSS

Hosted by:


Copyright © 2007 - 2025 goMatlab.de | Dies ist keine offizielle Website der Firma The Mathworks

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.