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.NONE 但没有效果;/
我使用 managedForm 创建树
final Tree tree = mForm.getToolkit().createTree(parent, SWT.NONE);
你能试一下吗:
FormToolkit toolkit = mForm.getToolkit(); toolkit.setBorderStyle(SWT.NULL); final Tree tree = toolkit.createTree(parent, SWT.NONE);