我在Rebol2中有一个VID列表,我想让其中一列成为某种菜单,从中可以从一组选项中选择一个值。我使用的代码是基于列表小部件示例.r.选择集是动态的。
我试着在一组静态的选择中使用"选择"one_answers"旋转",但效果很差。使用"选择"总是使用第一个值,"旋转"弹出一个黑色窗口。
这里是@AntonRolls代码的精简版本,它明确地回答了这个问题。这是"一个相当基本的例子,展示了如何在VID LIST中使用CHOICE菜单。"
members: [ {Gandalf} {Bilbo} {Frodo} ]
db: [
["1" "question 1 " "default1"]
["2" "question 2" ""]
["3" "question 3" "default3"]
]
view out: layout [
mylist: list 450x240 [
across
t1: text 50x20
t2: text 200x20 para [wrap?: true]
t3: text 200x20 effect [merge luma 10] font [] [
][
; alt-action (right-click action)
use [row][
if row: face/user-data [ ; face knows index
choose/window/offset members func [face value][
poke db/:row 3 face/text
] out (
mylist/offset + (t3/offset * 1x0)
+ (row - 1 * t3/size * 0x1)
)
]
]
]
] supply [
either count <= length? db [
face/user-data: count ; store row index
switch index [
1 [face/text: db/:count/1]
2 [face/text: db/:count/2]
3 [face/text: db/:count/3]
]
][
face/user-data: face/text: none
]
]
这是一个相当初级的示例,展示了如何使用CHOICE菜单在VID列表中。
https://s3-ap-southeast-1.amazonaws.com/antonrolls/rebol/gui/iterated/demo-list-of-texts-with-context-menu.r
(为了完整起见,我粘贴了代码,但我没有完全阅读其他答案,对不起。请忽略此编辑。我对混乱/噪音/干扰表示歉意。)