我在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个项目列表的窗口,第二个被选中。但如果我按“向下”键 - 第一个项目被选中!是否可以选择项目,按“向上”和“向下”键将移动现有选择,不会跳转到第一项?
答案 0 :(得分:4)
同时使用Select
(突出显示)和Focus
(使线条成为当前行):
........
widget.Focus(1)
widget.Select(1)
..........