How do you enable a GUI to adjust to fit screens of varying resolution

조회 수: 35 (최근 30일)
Cordelle
Cordelle 2013년 7월 1일
댓글: Praneeti Mitra 2021년 4월 21일
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

채택된 답변

Tom
Tom 2013년 7월 1일
In GUIDE, under Tools -> GUI options you can specify the resizing of the figure, including your own resize function.
You might also want to consider this FEX Submission.
  댓글 수: 7
Tom
Tom 2013년 7월 1일
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.
Praneeti Mitra
Praneeti Mitra 2021년 4월 21일
Can someone help me with the same problem?

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Panu Pratumnopharat
Panu Pratumnopharat 2017년 1월 1일
편집: Walter Roberson 2017년 1월 1일
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]);

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by