How do you enable a GUI to adjust to fit screens of varying resolution
15 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Cordelle
am 1 Jul. 2013
Kommentiert: Praneeti Mitra
am 21 Apr. 2021
I created a GUI in Guide and I want my GUI to adjust to fit screens of different varying resolution, because my application will be used on different computers.
Is there a way to allow this guide? If so, how?
or
Is there a few lines of code need to enable this feature? If so, where can i find examples of the code?
Thank you in advance,
Cordelle
0 Kommentare
Akzeptierte Antwort
Tom
am 1 Jul. 2013
In GUIDE, under Tools -> GUI options you can specify the resizing of the figure, including your own resize function.
7 Kommentare
Tom
am 1 Jul. 2013
You can set the figure size to the screensize:
set(handles.figure1,'Units','Pixels','Position',get(0,'ScreenSize'))
And from there resize the objects of the GUI.
Weitere Antworten (1)
Panu Pratumnopharat
am 1 Jan. 2017
Bearbeitet: Walter Roberson
am 1 Jan. 2017
GUI = figure('Color',[0.941 0.941 0.941],...
'Name','HAWTsimulator',...
'NumberTitle','off',...
'MenuBar','none',...
'Unit','normalized',...
'Position',[0 0 1 1],...
'outerposition',[0 0 1 1]);
0 Kommentare
Siehe auch
Kategorien
Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!