Verfasst am: 30.06.2014, 15:42
Titel: Editbox mit popupmenu 'steuern'
Hallo,
ich habe eine GUI mit einem popupmenu, das 2 Auswahlmöglichkeiten bietet. Wird die Auswahl 2 getroffen, soll ein editfeld 'entstehen', in dem der Benutzer eine Übersetzung eingibt.
Wird danach wieder Auswahlmöglichkeit 1 getroffen, soll das editfeld wieder gelöscht werden.
Hier der Code:
Code:
% Callback-function of the gearbox-popupmenu; function pm_gearbox_callback(gcf, eventdata, handles)
% We need this information for the minimal transmission i_G_min of the gearbox; % If we have a direct drive gear, we do not need any further information as % the minimal transmission of a direct drive gear box is 1; % If the user selects a over drive gear, a edit field has to appear, in % which he enters the minimal transmission of the overdrive gear;
switchget(handles.pm_gearbox, 'Value') case1 % Delete the editbox, if there is one; if(isfield(handles, 'edit_i_G_min')) delete(handles.edit_i_G_min);
handles = rmfield(handles, 'edit_i_G_min');
end
case2 % Create the editbox (if there is none) for the input of the transmission if(~(isfield(handles, 'edit_i_G_min')))
handles.edit_i_G_min = uicontrol('Style','edit', ...
'Units','normalized', ...
'Position',[0.50.50.50.5], ...
'BackgroundColor',[111], ...
'FontSize',10,...
'Visible','on');
end end
Mein Problem ist, dass das handle des editfeld (mit dem handle 'handles.edit_i_G_min') nicht abgespeichert wird. Wenn ich also wieder Auswahlmöglichkeit 1 wähle, dann wird das Feld nicht gelöscht, da dessen handle nicht mehr existiert (Feld aber noch da?!).
Ich habe bereits versucht mit guidata(gcf, handles); die handles Struktur zu updaten, aber das scheint auch nicht zu klappen. Die GUI wurde ohne guide erstellt.
(Ich habe die GUI mit handle.figure = figure(....); gestartet. Muss man dann für alle Elemente 'handle.figure' als 'Parent' angeben oder nicht? Ich hab das nicht gemacht, da ich nicht weiß, für was das gut ist.)
% Callback-function of the gearbox-popupmenu; function pm_gearbox_callback(gcf, eventdata, handles)
% We need this information for the minimal transmission i_G_min of the gearbox; % If we have a direct drive gear, we do not need any further information as % the minimal transmission of a direct drive gear box is 1; % If the user selects a over drive gear, a edit field has to appear, in % which he enters the minimal transmission of the overdrive gear;
switchget(h_Auswahlfenster_Getriebe.pm_gearbox, 'Value') case1 % Delete the editbox, if there is one; if(isfield(h_Auswahlfenster_Getriebe, 'edit_i_G_min')) delete(h_Auswahlfenster_Getriebe.edit_i_G_min);
h_Auswahlfenster_Getriebe = rmfield(h_Auswahlfenster_Getriebe, 'edit_i_G_min');
end
case2 % Create the editbox (if there is none) for the input of the transmission if(~(isfield(h_Auswahlfenster_Getriebe, 'edit_i_G_min')))
h_Auswahlfenster_Getriebe.edit_i_G_min = uicontrol('Style','edit', ...
'Units','normalized', ...
'Position',[0.40.330.070.06], ...
'BackgroundColor',[110], ...
'FontSize',8,...
'Visible','on');
end end
% Update the handles structure in the main GUI; setappdata(handles.figure_anfang, 'h_Auswahlfenster_Getriebe', h_Auswahlfenster_Getriebe);
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.