Hide maximize/minimize and close buttons for a figure window

7 次查看(过去 30 天)
I have a figure window and I want to remove the maximize/minimize and close buttons of it. I can not use any type of Java containers (JWindow, JPanel, ...) because they are not allowed to be Matlab components' parents. I am thinking of using some Java removeComponent command o something like this (I do not know if it will work). However, when I try to look for that buttons inside the structure of components through jf handle, I do not find where they are kept. Here is my code:
fh = figure('Menu','none','Toolbar','none');
jf = get(handle(fh),'JavaFrame');
drawnow;
jf.set,

采纳的回答

Jan
Jan 2012-3-4
If you are working under Windows, you can crop the complete window border using FEX: WindowAPI:
WindowAPI(gcf, 'Clip', true);
  3 个评论
Jan
Jan 2012-3-4
Why doesn't it work?
Perhaps you want: WindowAPI(gcf, 'position', 'work'); WindowAPI(gcf, 'Clip', true);
But after setting the position of the figure contents to the work area of the screen, the clipping is only useful for multi-monitor setups.
Julián Francisco
@Jan Simon: I finally got to maximize the figure window properly using WindowAPI(gcf, 'position', 'full'); and changing the state of Clip. Thank you back.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Environment and Settings 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by