【发布时间】:2019-11-21 15:09:32
【问题描述】:
我有一个“电子邮件”文本框,它接收用户输入,然后评估它是否是有效的电子邮件。如果电子邮件无效,我想在文本框周围显示一个红色矩形,如果相反,则隐藏它。我已经绘制了矩形,现在只需切换其可见性即可。
user.py
"""User-end software for signup/account data."""
from kivy.app import App
from kivy.uix.widget import Widget
from kivy.properties import StringProperty
import re
class LoginScreen(Widget):
"""Class for signup screen contents."""
email = StringProperty()
password = StringProperty()
def login(self):
"""Actions for when Login button is pressed."""
if not re.fullmatch(r"[^@]+@[^@]+\.[^@]+", self.email): # Check if email is valid
print("Invalid email!") # Hide rectangle instead of this
class UserApp(App):
"""Main app."""
def build(self):
"""Build app."""
return LoginScreen()
if __name__ == '__main__':
UserApp().run()
user.kv
#:kivy 1.11.1
<LoginScreen>:
email: email_input.text
password: password_input.text
canvas:
Color:
rgba: 1, 0, 0, 1
Rectangle: # show/hide this object
size: root.width * 5 / 7 + 6, 46
pos: root.width * 1 / 7 - 3, root.top - 259
Label:
font_size: 20
center_x: root.width / 2
top: root.top + 20
text: "Offbox Insurance"
Label:
font_size: 64
center_x: root.width / 2
top: root.top - 30
text: "Log in"
Label:
font_size: 20
center_x: root.width / 2
top: root.top - 140
text: "Email"
TextInput:
id: email_input
font_size: 24
height: 40
width: root.width * 5 / 7
center_x: root.width / 2
top: root.top - 216
multiline: False
Label:
font_size: 20
center_x: root.width / 2
top: root.top - 240
text: "Password"
TextInput:
id: password_input
font_size: 24
height: 40
width: root.width * 5 / 7
center_x: root.width / 2
top: root.top - 316
multiline: False
password: True
Button:
font_size: 20
height: 50
center_x: root.width / 2
top: root.top - 380
text: "Log in"
on_press: root.login()
Label:
font_size: 16
center_x: root.width / 2
top: root.height / 12 + 75
text: "Don't have an account?"
Button:
font_size: 16
height: 36
center_x: root.width / 2
top: root.height / 12 + 5
text: "Sign up"
【问题讨论】:
标签: python python-3.x kivy python-3.7 kivy-language