Cross-platform GUI toolkits with WPF-style composition capabilities
Posted
by Alexey Romanov
on Stack Overflow
See other posts from Stack Overflow
or by Alexey Romanov
Published on 2010-06-18T16:39:14Z
Indexed on
2010/06/18
16:43 UTC
Read the original article
Hit count: 293
A huge advantage of WPF over, say, WinForms is its composability. To quote Programming WPF:
One level up, WPF provides its “content model,” which allows any control to host any group of other controls. You don’t have to build special
BitmapButton
orIconComboBox
classes; you put as many images, shapes, videos, 3D models, or whatever into a Button (or aComboBox
,ListBox
, etc.) as suit your fancy.
Are there any cross-platform GUI frameworks (preferably with Java bindings) out there which also let you do this?
© Stack Overflow or respective owner