|
Catos |
Forum-Anfänger
|
|
Beiträge: 12
|
|
|
|
Anmeldedatum: 22.02.08
|
|
|
|
Wohnort: ---
|
|
|
|
Version: ---
|
|
|
|
|
|
Verfasst am: 11.03.2008, 09:53
Titel: Proportionalität
|
|
Hallo,
warum passt sich der Pushbutton nicht an, wenn ich die Grafikverkleinere. Komischerweise verkleinern sich die Edit-Felder schon...
Hat jemand eine Lösung...wäre sehr wichtig...danke..!
"Code"
figure('Name','WFMconf V01.00','NumberTitle','off','Units','normalized','Position',[0 0.05 1 0.9],'Tag','DIA_WFM','Menubar','none');
color = get(gcf,'Color');
uicontrol('Style','pushbutton','Units','normalized','Position',[0.48 0.94 0.06 0.04],'Fontsize',12,'FontWeight','bold',...
'String','TEST','Tag','PB_TEST','Callback','xfunc_wfmconf_button(get(gco,''Tag''));');
grid on;
hold on;
uicontrol('Style','edit','Units','normalized','Position',[0.075 0.91 0.04 0.02],'Tag','FILELIST','Fontsize',10,...
'Callback','xfunc_wfmconf_button(get(gco,''Tag''));');
uicontrol('Style','edit','Units','normalized','Position',[0.91 0.1 0.04 0.02],'Tag','FILELIST','Fontsize',10,...
'Callback','xfunc_wfmconf_button(get(gco,''Tag''));');
|
|
|
|
|
tompie |
Forum-Guru
|
|
Beiträge: 260
|
|
|
|
Anmeldedatum: 19.09.07
|
|
|
|
Wohnort: München
|
|
|
|
Version: immer alles
|
|
|
|
|
|
Verfasst am: 11.03.2008, 09:59
Titel:
|
|
Hallo,
bei mir verkleinert sich der Pushbutton schon, allerdings nicht die Fontgröße. Dazu musst Du in der entsprechenden uicontrol die Eigenschaft
setzen. Dasselbe Problem tritt auch bei den edit-Boxen auf.
Hoffe das hilft.
Gruß tompie
|
|
|
Catos |
Themenstarter
Forum-Anfänger
|
|
Beiträge: 12
|
|
|
|
Anmeldedatum: 22.02.08
|
|
|
|
Wohnort: ---
|
|
|
|
Version: ---
|
|
|
|
|
|
Verfasst am: 11.03.2008, 10:17
Titel:
|
|
Ok, danke...jetzt geht dieser pushbutton zwar mit, aber mein Schriftzug "TEST" ist nicht mehr drin.....????
"Code"
uicontrol('Style','pushbutton','FontUnits','normalized','Units','normalized','Position',[0.48 0.94 0.06 0.04],'Fontsize',12,'FontWeight','bold',...
'String','TEST','Tag','PB_TEST','Callback','xfunc_wfmconf_button(get(gco,''Tag''));');
|
|
|
Catos |
Themenstarter
Forum-Anfänger
|
|
Beiträge: 12
|
|
|
|
Anmeldedatum: 22.02.08
|
|
|
|
Wohnort: ---
|
|
|
|
Version: ---
|
|
|
|
|
|
Verfasst am: 11.03.2008, 10:39
Titel:
|
|
OK, super...danke...habs jetzt hinbekommen.
Grüße Catos
|
|
|
Catos |
Themenstarter
Forum-Anfänger
|
|
Beiträge: 12
|
|
|
|
Anmeldedatum: 22.02.08
|
|
|
|
Wohnort: ---
|
|
|
|
Version: ---
|
|
|
|
|
|
Verfasst am: 11.03.2008, 13:44
Titel:
|
|
|
|
|
Danke, das ganze klappt jetzt echt gut. Jetzt bin ich noch a rumprobiern, wie ich es schaffe, das in den "edit-feldern" nur min/max Werte betrachtet werden, ohne dabei die Einheiten zu beachten.
Bisher ist es eben so, dass er mir, sobald ich ein Wert mit Einheit (bsp. 11As/div) eingebe, er mir [] als Ergebnis ausgibt.
Es funktioniert nur, wenn ich 11 eingebe.
Meine Frage nun:
Ist es möglich, wenn beispielslweise 11As/div steht, dass er das As/div vernachlässigt und mir nur die Zahl ausgibt...?????????
"Code"
figure('Name','WFMconf V01.00','NumberTitle','off','Units','normalized','Position',[0 0.05 1 0.9],'Tag','DIA_WFM','Menubar','none');
color = get(gcf,'Color');
grid on;
hold on;
uicontrol('Style','pushbutton','Units','normalized','Position',[0.48 0.94 0.06 0.04],'FontUnits','normalized','FontWeight','bold',...
'String','TEST','Tag','PB_TEST','Callback','xfunc_wfmconf_button(get(gco,''Tag''));');
uicontrol('Style','edit','Units','normalized','Position',[0.075 0.1 0.04 0.02],'Tag','YMIN_Wert','FontUnits','normalized',...
'Callback','xfunc_wfmconf_button(get(gco,''Tag''));');
uicontrol('Style','edit','Units','normalized','Position',[0.89 0.06 0.04 0.02],'Tag','XMAX_Wert','FontUnits','normalized',...
'Callback','xfunc_wfmconf_button(get(gco,''Tag''));');
uicontrol('Style','edit','Units','normalized','Position',[0.11 0.06 0.04 0.02],'Tag','XMIN_Wert','FontUnits','normalized',...
'Callback','xfunc_wfmconf_button(get(gco,''Tag''));');
uicontrol('Style','edit','Units','normalized','Position',[0.075 0.91 0.04 0.02],'Tag','YMAX_Wert','FontUnits','normalized',...
'Callback','xfunc_wfmconf_button(get(gco,''Tag''));');
|
|
|
|
|
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
|
|
Impressum
| Nutzungsbedingungen
| Datenschutz
| FAQ
| RSS
Hosted by:
Copyright © 2007 - 2024
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.
|
|