[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
|
[news.eclipse.tools] Re: Any thing similar to JPanel in SWT/JFace ?
|
"Depends on what is the similarity you seek" -- I say it that way cause I
had a lot of trouble with this exact point, and the key insight for me was
that in Swing, you create GUI's bottom-up (add elements to a new parent),
but in SWT you create GUI's top-down (add children to an existing parent);
this affects how you think about layout questions, too. Given that, then
Composite is the analogue of JPanel ...
HTH,
Paul K
Double O One wrote:
> Hi,
>
> I'm looking for something like JPanel ? Any objects in SWT or JFace
> that similar to JPanel ?
>
> Thanks