gpt4 book ai didi

python - wxPython:如何正确选择 CListCtrl 项?

转载 作者:太空宇宙 更新时间:2023-11-04 10:50:51 24 4
gpt4 key购买 nike

我在 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 个项目的列表,第二个被选中。但是,如果我按下“向下”键 - 第一个 项目被选中!是否可以选择项目以便按“向上”和“向下”键将移动现有选择并且不会跳转到第一个项目?

最佳答案

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

........
widget.Focus(1)
widget.Select(1)
..........

关于python - wxPython:如何正确选择 CListCtrl 项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14044223/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com