有一个包含三列的列表框。我正在尝试获取所选索引(项目)的所有行。
问题是我无法获得整行。以下函数仅返回第一列中行的值,而不返回其他列中的值:
(send my-list-box get-string-selection)
这是我的列表框
(define my-list-box (new list-box%
(label "")
(parent third-layer)
(choices '("First" "Second") )
(style (list 'multiple
'variable-columns
'column-headers))
(columns (list "URL of Source" "Redirection Url" "Authentication Code" ))))
我究竟做错了什么?