2

我的 Windows 8 上安装了带有 wxWidgets 2.8.11.0 的 python 2.7。如果我执行以下代码:

import wx

app = wx.App( redirect = False )
wnd = wx.Frame( parent = None )
widget = wx.ListCtrl( parent = wnd, style = wx.LC_REPORT )
widget.InsertColumn( 0, "items" )
widget.InsertStringItem( 0, "foo" )
widget.InsertStringItem( 1, "bar" )
widget.InsertStringItem( 2, "baz" )
widget.Select( 1 )
wnd.Show()
app.MainLoop()

我看到了一个包含 3 个项目列表的窗口,第二个被选中。但是,如果我按“向下”键 -选择了第一项!是否可以选择项目,所以按“向上”和“向下”键将移动现有选择并且不会跳转到第一个项目?

4

1 回答 1

5

一起使用Select(突出显示)和Focus(使该行成为当前行):

........
widget.Focus(1)
widget.Select(1)
..........
于 2012-12-26T18:18:34.783 回答