【发布时间】:2017-10-25 01:18:02
【问题描述】:
我有以下简单代码:
Red []
view [
text "Value of x:" f1: field "" return
text "Value of y:" f2: field "" return
text "Read Sum:" tt: text "" return
button "Calculate" [
tt/text: to-string ((to-integer f1/text) + (to-integer f2/text)) ]
button "Quit" [quit] ]
如何添加代码以便可以使用 TAB 键在不同字段之间移动?显然,这在 Rebol (http://www.rebol.com/how-to/fields.html) 中有效,但在这里不起作用。
【问题讨论】:
标签: user-interface textbox rebol red