Re: javafx frame on SWT composite + eclipse!!
- From: sukanya84@xxxxxxxxx
- Date: Tue, 4 Mar 2008 03:24:14 -0800 (PST)
Use a AWT Panel in between the SWT_AWT frame and FX's frame/
rootpane .This will solve the problem.
There was some site stating to use the Panel.
var frame:<<java.awt.Frame>> =
SWT_AWT.new_Frame(compositeobj:Composite);
var panel:<<java.awt.Panel>> = new Panel();
var rootpane = new RootPane();
panel.add(rootpane.getComponent());
frame.add(panel);
where rootpane is the FX container.Do try.
.
- Prev by Date: Re: javafx frame on SWT composite + eclipse!!
- Next by Date: Failed to create Java Project...
- Previous by thread: Re: javafx frame on SWT composite + eclipse!!
- Next by thread: Failed to create Java Project...
- Index(es):