JToolBar可以从框架或面板中附加或分离到单独的窗口中。所以我想用它作为紧急指令和指示。问题是当分离时,如果你最小化它所属的框架,工具栏也最小化,我想让它留在屏幕上。
the toolbar also minimizes , I want for it to stay on the screen
设置工具栏不可浮动。作为示例代码
JToolBar toolbar=new JToolBar();
toolbar.setFloatable(false);
...
toolbar.add(YourCompoenthere);
...
它将限制工具栏从框架或面板分离。参见Java文档和示例