如何使用户无法编辑文本输入?
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