标签: java swt
我有复合对象
Composite composite = new Composite(shell, SWT.NONE); composite.setBounds(new Rectangle(10,10,100,100);
如何让这个复合材料具有透明背景?
我需要在此合成中放置小部件(非透明)...
答案 0 :(得分:5)
无法创建具有透明背景的Composite。您可以使用具有透明背景的Shell(请参阅example),并将小部件放入其中。
Composite
Shell