我是 Red/Rebol 的新手。到目前为止我很喜欢它,我正在尝试使用 GUI 系统。
可以这么说,我正在尝试对齐垂直列中的一些按钮。
这是我到目前为止所拥有的
Red [ Title: "Editor" needs: 'view]
view [ size 800x600 title "Save Notes"
t: text ""
a: area 500x500 black
button "Click" [t/text: "Red is good !" ] return
text "" button "Close" [quit] return
text "" button "Save" [save %notes.dat a/text t/text "Saved"]
]