SWT on OS X: NSSheet equivalent
Is SWT capable of showing an NSSheet 开发者_StackOverflow中文版like Quaqua simulates it using Swing?
One has to create the Dialog
with the option SWT.SHEET
, e.g.
FileDialog fileDialog = new FileDialog(shell, SWT.OPEN | SWT.SHEET);
精彩评论