为新手问题道歉,但我的教科书和网络搜索并没有帮助我(可能是因为我不知道我正在看的正确的名字)。在some example code中,我看到成员声明并初始化javafx.scene.shape.Rectangle
,如下所示:
var bgRect = Rectangle {
x: 0
y: 0
width: bind listView.width
height: bind this.itemText.boundsInLocal.height
fill: bind bgColor;
}
我可以看到这是做什么,但不知道如何做。大括号内的内容如何变成Rectangle
实例?