3
我有複合物的Java SWT透明的複合背景
Composite composite = new Composite(shell, SWT.NONE);
composite.setBounds(new Rectangle(10,10,100,100);
如何使這種複合材料具有透明的背景是什麼?
我需要有小部件(非透明的)放置在該複合...
我有複合物的Java SWT透明的複合背景
Composite composite = new Composite(shell, SWT.NONE);
composite.setBounds(new Rectangle(10,10,100,100);
如何使這種複合材料具有透明的背景是什麼?
我需要有小部件(非透明的)放置在該複合...
這不可能透明背景創建Composite
。您可以使用具有透明背景的Shell
(請參閱example),並在其中放置小部件。