gpt4 book ai didi

python - 在 Kivy 中引用动态创建的小部件的 id

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

在绑定(bind)到按钮的方法中,我无法通过 root.ids.created_in_kv.created_in_py 访问动态创建的子项。当我检查 root.ids.created_in_kv.ids 字典时它是空的,但是 root.ids.created_in_kv.children 中有 child

我想要实现的是创建一个将充当多选器的弹出窗口。它将接受可能的选择并动态创建标签-复选框对并将其添加到弹出内容,并且在“应用”按钮上它将仅返回选择的列表(str())。

我无法在 kv 中构建包含多个小部件的弹出窗口,但以下是有效的(建议使其“更好”而不是受欢迎):

kv代码:

<SelectorPopup>:
title: 'empty'
BoxLayout:
id: inside
orientation: 'vertical'
BoxLayout:
id: options
BoxLayout:
id: buttons
orientation: 'vertical'
Button:
text: 'Apply'
on_release: root.return_selected()
Button:
text: 'Cancel'
on_release: root.dismiss()

<LabeledCheckbox@BoxLayout>:
id: entity
CheckBox:
id: choice
Label:
text: root.id

我正在创建标签-复选框对(打包在 GridLayout 中)并将其放入 options BoxLayout 的 python 代码:

class SelectorPopup(Popup):
def return_selected(self):
selected=[]
a = self.ids.inside.options.choices.ids # dict is empty
for item in a.keys():
selected.append(item) if a[item].ids.choice.value #add if checkbox checked
return selected

class MultiselectForm(BoxLayout):
data = ListProperty([])
def __init__(self, **kwargs):
super(MultiselectForm, self).__init__(**kwargs)
self.prompt = SelectorPopup()

def apply_data(self):
# write data to self.data
pass

def create_popup(self):
try:
# some code to check if choices are already created
check = self.prompt.ids.inside.options.choices.id
except AttributeError:
possible = ['choice1','choice2','choice3'] #query db for possible instances
choices = GridLayout(id='choices',cols=2)
for entity in possible:
choice = Factory.LabeledCheckbox(id=entity)
choices.add_widget(choice)
self.prompt.ids.options.add_widget(choices)
self.prompt.open()

问题:

1) 如何使return_selected 方法起作用?

2) 有没有办法更好地构造弹出窗口?我无法将小部件树添加到 content ObjectProperty 中,例如:

<MyPopup>:
content:
BoxLayout:
Label:
text: 'aaa'
Label:
text: 'bbb'

最佳答案

看来您对 ID 的工作方式有点困惑。在文档中对它们进行了一些讨论:https://kivy.org/docs/api-kivy.lang.html

基本上,它们只是 .kv 中的特殊标记,可让您引用定义的小部件。它们被收集并放置在定义它们的规则的 ids 字典中 在根小部件上。这意味着它们不像您引用它们那样嵌套,它们是全部在根小部件上(SelectorPopupLabeledCheckbox)

所以而不是(从 SelectorPopup 中):

self.ids.inside.options.choices

你会:

self.ids.choices

这也意味着动态添加的小部件不会出现在 ids 字典中,但它们实际上并不需要。由于您是在代码中创建它们,因此您可以自己保存对它们的引用(使用 .kv 更难做到这一点)。

综上所述,使用 ListView 可能会容易得多显示您的项目列表。

关于python - 在 Kivy 中引用动态创建的小部件的 id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35872322/

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