I created a GUI in matlab but I can't make my GUI as big as full screen. Can you help me how to make it big as full screen. thank you very much.

 채택된 답변

Walter Roberson
Walter Roberson 2013년 12월 26일

1 개 추천

After you create the GUI, supposing you know the figure number is FigNum, then
set(FigNum, 'Units', 'norm', 'Position', [0 0 1 1]);
Note: if what you are trying to do is "full screen" in the sense of covering the task bar (MS Windows) or menu bar (OS-X), then a different unsupported method would have to be used.

추가 답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2013년 12월 26일

1 개 추천

You can get the screen size:
scr_size = get(0,'ScreenSize');

댓글 수: 1

Nguyen Trong Nhan
Nguyen Trong Nhan 2013년 12월 26일
Where I should put "scr_size = get(0,'ScreenSize');" ?

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

카테고리

도움말 센터File Exchange에서 Programming에 대해 자세히 알아보기

제품

태그

Community Treasure Hunt

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

Start Hunting!

Translated by