Increase screen space of GUI

Hi, I have constructed a complex GUI using MATLAB. I intend to increase the screen space of the GUI and am unable to figure out the technique, Dragging the edges of the GUI doesnt help. May someone suggest any method to do so.
Thanks.
Anubhav

댓글 수: 1

Image Analyst
Image Analyst 2011년 10월 1일
It should work. What is the "windowstyle" property of your GUI (look in the Property Inspector). Is it "normal"? Or is it "modal" or "docked"? And what is the "units" property value?

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

답변 (1개)

Oleg Komarov
Oleg Komarov 2011년 10월 1일

0 개 추천

set(gcf,'Position',[leftX, bottomY, width, height])
gcf dynamically refers to the handle of the figure object which your GUI is built on (basically the outer layer of your GUI).
You have to assign 4 values with the property 'Position'. The first two values position your GUI in the screen by setting the "starting" point of the lower-left corner, the other two are self-explaantory.
You can call:
get(gcf,'Position')
to see the actual values.

카테고리

도움말 센터File Exchange에서 Creating, Deleting, and Querying Graphics Objects에 대해 자세히 알아보기

질문:

2011년 10월 1일

Community Treasure Hunt

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

Start Hunting!

Translated by