While working in GUI, how I can work with full screen?

조회 수: 15 (최근 30일)
sermet
sermet 2013년 6월 14일
댓글: Image Analyst 2023년 1월 16일
In GUI, fig window not opens full screen because of buttons, after completing my working I open fig file full screen and there are empty spaces occurs, how can I work full screen like fig file opens full screen in order to avoid spaces?
  댓글 수: 1
David Sanchez
David Sanchez 2013년 6월 14일
Could you state your question in another way? It is not very clear what your problem is. What spaces do you want to avoid?

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

채택된 답변

Walter Roberson
Walter Roberson 2013년 6월 14일
The window managers generally do not allow windows to be sized as full screen unless special graphics calls are made. But you can try this FEX contribution for hints, or this one

추가 답변 (4개)

Image Analyst
Image Analyst 2023년 1월 16일
편집: Adam Danz 2023년 1월 16일
In modern versions of MATLAB (R2018a or later) you can get the handle to your figure then set the WindowState property to 'maximized'.
hFig = figure;
hFig.WindowState = 'maximized'; % Maximize the window
hFig.NumberTitle = "off"; % Turn off "Fig 1" etc.
hFig.Name = 'My Awesome App'; % Whatever you want the title bar to say.
hFig.ToolBar = "none" % Turn off toolbar
hFig.MenuBar = "none" % Turn off pull down menu.
Or you can specify it all at once when you call the figure function:
hFig = figure('WindowState', 'maximized',... % Maximize the window
'NumberTitle', "off",... % Turn off "Fig 1" etc.
'Name', 'My Awesome App', ... % Whatever you want the titlebar to say.
'ToolBar', "none", ... % Turn off toolbar
'MenuBar', "none") % Turn off pull down menu.

Vishal Rane
Vishal Rane 2013년 6월 14일
You could set the 'Units' to 'Normalized' ensuring that when you expand the figure, all components on ur GUI resize accordingly. For that your 'position' indices should be between 0 and 1.
  댓글 수: 2
Walter Roberson
Walter Roberson 2013년 6월 14일
The window managers for MS Windows do not normally permit applications to go completely full screen: they require that some space be left to access menu bars or close buttons or the like. You need to do special things to take over the entire screen.
Image Analyst
Image Analyst 2023년 1월 16일
@Walter Roberson, you can now use the 'fullscreen' option for WindowState (as you probably know):
hFig = figure;
hFig.WindowState = "fullscreen"; % full Screen - no border anywhere
hFig.NumberTitle = "off"; % Turn off "Fig 1" etc.
hFig.Name = 'My Awesome App'; % Whatever you want the title bar to say.
hFig.ToolBar = "none" % Turn off toolbar
hFig.MenuBar = "none" % Turn off pull down menu.
% Now create an axes and plot stuff into it.
plot(1:10, 'b.');
grid on;

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


Image Analyst
Image Analyst 2013년 6월 14일
You can try this:
% Enlarge figure to full screen.
set(gcf, 'units','normalized','outerposition',[0 0 1 1]);
It makes it the same size as the full screen though it seems the upper left of the GUI is not always exactly, precisely at the upper left pixel of your video adapter.
  댓글 수: 3
Nizam
Nizam 2016년 1월 15일
If you're using GUIDE, paste the above code inside the Resize function (right click the layout editor>View Callback>ResizeFcn). Something similar to this:--> function figure1_ResizeFcn(hObject, eventdata, handles)....end
Image Analyst
Image Analyst 2016년 1월 15일
A programmatic way to maximize the window is the attached code I got from Yair Altman It works both with R2014b and later (unlike some), and earlier.

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


Jan
Jan 2013년 6월 18일
FEX: WindowAPI allows to resize the figure to full screen (as the maximization button with visible task bar), to the full screen overlapping the task bar, and even to expand the inner position to both kinds of full screen.
  댓글 수: 3
Image Analyst
Image Analyst 2023년 1월 16일
@cr, As shown in my answer below, in modern versions of MATLAB you can get the handle to your figure then set the WindowState property to 'maximized'.
hFig = figure;
hFig.WindowState = 'maximized'; % Maximize the window
hFig.NumberTitle = "off"; % Turn off "Fig 1" etc.
hFig.Name = 'My Awesome App'; % Whatever you want the title bar to say.
hFig.ToolBar = "none" % Turn off toolbar
hFig.MenuBar = "none" % Turn off pull down menu.
Or you can specify it all at once when you call the figure function:
hFig = figure('WindowState', 'maximized',... % Maximize the window
'NumberTitle', "off",... % Turn off "Fig 1" etc.
'Name', 'My Awesome App', ... % Whatever you want the titlebar to say.
'ToolBar', "none", ... % Turn off toolbar
'MenuBar', "none") % Turn off pull down menu.
cr
cr 2023년 1월 16일
Thanks. I see that latest version even has a fullscreen option. A reason to upgrade.

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

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by