Kivy:如何进行不可编辑的文本输入



如何使用户无法编辑文本输入?

TextInput:
    id:out
    background_color: (0, 0, 0, 1)
    foreground_color: (0, 1, 0, 1)
    multiline: True
    text:""

readonly属性是你的朋友

TextInput:
    id:out
    background_color: (0, 0, 0, 1)
    foreground_color: (0, 1, 0, 1)
    multiline: True
    text:""
    readonly: True 
您还可以

TextInput字段设置为禁用。

TextInput:
    id:out
    background_color: (0, 0, 0, 1)
    foreground_color: (0, 1, 0, 1)
    multiline: True
    text:""
    disabled: True 

查看此答案以获取更多信息:https://stackoverflow.com/a/45238685/7346913

相关内容

  • 没有找到相关文章

最新更新