2

我在 Rebol2 中有一个 VID 列表,我想让其中一个列成为某种菜单,从中我可以从一组选项中选择一个值。我使用的代码基于 list-widget-example.r。这组选择是动态的。

我尝试将“选择”和“旋转”与一组静态选择一起使用,但效果不佳。使用“选择”总是使用第一个值,“旋转”弹出一个黑色窗口。

4

2 回答 2

2

这是明确回答问题的@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
        ]
    ]
于 2015-03-24T14:38:56.617 回答
0

这是一个相当基本的示例,它展示了如何在 VID LIST 中使用 CHOICE 菜单。

https://s3-ap-southeast-1.amazonaws.com/antonrolls/rebol/gui/iterated/demo-list-of-texts-with-context-menu.r

(为了完整起见,我粘贴了代码,但我没有完全阅读其他答案,抱歉。请忽略此编辑。对于混乱/噪音/干扰,我深表歉意。)

于 2015-03-21T12:53:47.493 回答