(通译)第五回 开始使用JavaFX2.0
(翻译)第五回 开始使用JavaFX2.0原文地址http://download.oracle.com/javafx/2.0/get_started/jfxpub-get_
(翻译)第五回 开始使用JavaFX2.0
原文地址http://download.oracle.com/javafx/2.0/get_started/jfxpub-get_started.htm
?
如果想用 JavaFX快速开发富用户体验的应用,就好好读本文吧。我们将创建一个简单应用并了解到用少量代码实现复杂图形效果是多么容易。当然了,JavaFX不仅仅只是异常漂亮生动的形状而已。读完本文后去看看样例将大有好处。
Description of "Figure 1 Colorful Circles Application"
如果你很熟悉JavaFX场景图形编程模型,那就很容易理解程序的代码。 舞台( stage)是应用的最高层容器,场景( scene)是应用中内容的绘图表面。内容都被组织为场景图形,是一颗节点的层次树。
Figure 2 为应用 ColorfulCircles展示了场景图形。
分支节点是 Group
类的实例化。非分支节点,即叶子节点,是 Rectangle
和Circle
类的实例化。
Description of "Figure 2 Colorful Circles Scene Graph"
Description of "Figure 3 Stage and Scene"
Description of "Figure 4 Circles"
Description of "Figure 5 Box Blur on Circles"
Description of "Figure 6 Linear Gradient"
Figure 7 展示了中间的场景图。现在circles
组和colors
矩形都是根节点的孩子。
Description of "Figure 7 Intermediate Scene Graph"
Description of "Figure 8 Overlay Blend"
Description of "Figure 9 Animated Circles"