Hot to change the settings of multiple gui components at the same time

1 Ansicht (letzte 30 Tage)
Hello,
I have a programmatically written gui. Their units are in pixels. After writing everything in pixels, I wanted to set all the units to normalized. I don't want to do it one by one. Do you know how I can set to normalized for multiple handles at the same time?
Thank you,
Emre

Akzeptierte Antwort

Sean de Wolski
Sean de Wolski am 10 Aug. 2012
Okay:
handles = struct('h1',pi,'h2',3,'edit1',17); %exmaple handles
set(cell2mat(struct2cell(handles)),'somefield',some_value);
  3 Kommentare
Sean de Wolski
Sean de Wolski am 10 Aug. 2012
You can't have the '.' in the field name of a struct. It looks lik eyou probably want:
tobenormalized=struct('text',handles.text);

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (2)

Matt Fig
Matt Fig am 10 Aug. 2012
Pass in a vector of the handles:
u(1) = uicontrol;
u(2) = uicontrol;
u(3) = uicontrol;
set(u,'units','norm')
  5 Kommentare
Addy
Addy am 9 Mai 2018
In that case, something like this would be easiest of all!
set(findall(gcf,'units','pix'),'units','norm')
OMG. Thank you very much for this. I finally found this gold after 5 hours of madness :^)
Kevin Phung
Kevin Phung am 25 Mär. 2019
Bearbeitet: Kevin Phung am 25 Mär. 2019
ditto that!! That's one beautiful line. Thanks @Loginatorist

Melden Sie sich an, um zu kommentieren.


Seyhan Emre Gorucu
Seyhan Emre Gorucu am 10 Aug. 2012
Thank you guys for the answers.

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by