파이썬[Python]: kivy - DropDown 클래스 - kv
kivy.uix.dropdown 모듈 - DropDown 클래스(class)
/// 설명
메인 위젯안에 다수의 리스트 위젯을 포함하고 있습니다. 이 리스트들은 어떤 종류의 위젯이 오더라도 상관이 없습니다.
참고: uix 모듈 목록
※ 형식
DropDown(**kwargs)
reference
https://kivy.org/doc/stable/api-kivy.uix.dropdown.html
참고: uix 모듈 목록
※ 형식
DropDown(**kwargs)
reference
https://kivy.org/doc/stable/api-kivy.uix.dropdown.html
/// 예제
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | import kivy kivy.require('2.0.0') from kivy.app import App from kivy.core.window import Window from kivy.lang import Builder from kivy.uix.dropdown import DropDown from kivy.uix.button import Button Window.clearcolor = (.5, .5, 1, .1) Builder.load_string(''' <MyDropDown>: Button: text: 'List 1' size_hint_y: None height: 50 Button: text: 'List 2' size_hint_y: None height: 50 ''') class MyDropDown(DropDown): pass class TestApp(App): def build(self): dd = MyDropDown() # main button mainbt = Button(text='DropList', size_hint=(None, None), pos_hint={'x': .45, 'y': .6}) mainbt.bind(on_release=dd.open) return mainbt TestApp().run() | cs |
/// 출력
* 실행환경: Microsoft Windows 10 Homes
* 인터프리터: 파이썬(Python 3.9)
– 당신을 응원합니다. –
댓글
댓글 쓰기