Table Of Contents
Kv Design Language(翻訳済み)¶
Kivyは、簡単で拡張性のあるGUI設計のためのデザイン言語を提供します。言語はインターフェース設計をアプリケーションロジックから切り離し 関心の分離 を固守することをすことを簡単にします。例えば:
上記のコードは
<LoginScreen>: # every class in your app can be represented by a rule like
# this in the kv file
GridLayout: # this is how you add your widget/layout to the parent
# (note the indentation).
rows: 2 # this how you set each property of your widget/layout
このように、Kv言語でGUIを設計するのはとても簡単です。より詳細な理解のために、 Kv language(翻訳済み) をご参照ください。