gpt4 book ai didi

python - 如何获取在 wxpython 循环期间创建的 TextCtrl 的值

转载 作者:太空宇宙 更新时间:2023-11-04 07:42:48 25 4
gpt4 key购买 nike

假设我正在使用这样的循环创建 6 个文本控制字段:

ticker_items = ['bid', 'ask', 'open', 'close', 'high', 'low']
for item in ticker_items:
wx.TextCtrl(self.panel, -1, value=item, size=(-1, -1))

创建后如何更新这些内容?

最佳答案

你不能。您要么必须以某种方式保存对象(例如对象列表),要么为每个 TextCtrl 提供不同的 ID。

例如:

ticker_items = [('bid', 1000), ('ask', 1001),
('open', 1002), ('close', 1003),
('high', 1004), ('low', 1005)]

for item, id in ticker_items:
wx.TextCtrl(self.panel, id=id, value=item, size=(-1, -1))

然后就可以使用了

my_textctrl = self.panel.FindWindowById(id_of_my_ctrl)

获取特定的控件

或者,使用列表:

ticker_items = ['bid', 'ask', 'open', 'close', 'high', 'low']
self.my_controls = []
for item in ticker_items:
text_control = wx.TextCtrl(self.panel, -1, value=item, size=(-1, -1))
self.my_controls.append(text_control)

你检索你的文本号码 0 用

 my_textctrl = self.my_controls[0]

关于python - 如何获取在 wxpython 循环期间创建的 TextCtrl 的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15665022/

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