Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在 SWT 中禁用 shell 的全屏模式?
new Shell(SWT.TOOL);
SWT.TOOL确实隐藏了一个全屏按钮,但它也隐藏了一个应用程序的图标。此外,您仍然可以双击窗口的头部以全屏显示它或在 Windows >=7 中使用全屏滑动
SWT.TOOL
您可以使用这些样式位:
final Shell shell = new Shell(display, SWT.CLOSE | SWT.TITLE | SWT.MIN);
但是,您将无法再通过拖动角来调整外壳的大小。如果添加SWT.RESIZE,它将调整大小,但会再次最大化。
SWT.RESIZE