如何使用.kv文件在kivy中创建下拉列表

时间:2019-08-24 05:56:06

标签: python python-3.x kivy kivy-language

我在.kv中创建下拉列表时遇到问题,因此任何人都可以帮助我,并给我提供仅1到10个数字的下拉列表的代码

1 个答案:

答案 0 :(得分:0)

您可以使用official documentation作为参考

.kv

<CustomDropDown>:
    Button:
        text: 'My first Item'
        size_hint_y: None
        height: 44
        on_release: root.select('item1')
    Label:
        text: 'Unselectable item'
        size_hint_y: None
        height: 44
    Button:
        text: 'My second Item'
        size_hint_y: None
        height: 44
        on_release: root.select('item2')

.py

class CustomDropDown(DropDown):
    pass

dropdown = CustomDropDown()
mainbutton = Button(text='Hello', size_hint=(None, None))
mainbutton.bind(on_release=dropdown.open)
dropdown.bind(on_select=lambda instance, x: setattr(mainbutton, 'text', x))