display = Display.getDefault();
shell = new Shell(display, SWT.DIALOG_TRIM | SWT.APPLICATION_MODAL);
//Shell shell = window.getShell();
NSWindow nswindow = shell.view.window();
nswindow.setCollectionBehavior(0);
nswindow.setShowsResizeIndicator(false);
setDialogShell(shell);
getDialogShell().setLayout( new FormLayout());
getDialogShell().setFullScreen(false);
这对我有用..
**** *编辑* * ** * ** * ** * ** * **
上面的代码没有在 Windows 中运行,因为没有识别出“NSWindow”类。要为 window 和 mac 使用通用代码,请使用以下代码。
public static boolean isWindows() {
return (System.getProperty("os.name").toLowerCase().indexOf("win") >= 0);
}
/// 检查操作系统是否为Window,然后修改代码如下
display = Display.getDefault();
shell = new Shell(display, SWT.DIALOG_TRIM | SWT.APPLICATION_MODAL);
//Shell shell = window.getShell();
if(!isWindows()){
Field field = Control.class.getDeclaredField("view");
Object /*NSView*/ view = field.get(shell);
if (view != null)
{
Class<?> c = Class.forName("org.eclipse.swt.internal.cocoa.NSView");
Object /*NSWindow*/ window = c.getDeclaredMethod("window").invoke(view);
c = Class.forName("org.eclipse.swt.internal.cocoa.NSWindow");
Method setCollectionBehavior = c.getDeclaredMethod(
"setCollectionBehavior", /*JVM.is64bit() ?*/ long.class /*: int.class*/);
setCollectionBehavior.invoke(window,0);
}
// NSWindow nswindow = shell.view.window();
// nswindow.setCollectionBehavior(0) ;
// nswindow.setShowsResizeIndicator(false);
}
setDialogShell(shell);
getDialogShell().setLayout( new FormLayout());
getDialogShell().setFullScreen(false);
getDialogShell().layout();
getDialogShell().pack();