鱼C论坛

 找回密码
 立即注册
查看: 1898|回复: 4

[技术交流] 一个登录界面

[复制链接]
发表于 2020-4-29 15:12:10 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 Mike_Python0721 于 2020-4-29 15:13 编辑

一个登路界面

希望点评

上代码:
from tkinter import *
from tkinter import messagebox as g
import pickle
import random

# from PIL import Image, ImageTk

# password = 'python'
# pickle_file = open('./password.pkl','wb')
# pickle.dump(password,pickle_file)
# pickle_file.close()

pickle_file = open(r".\password.pkl","rb")
password = pickle.load(pickle_file)

ci_shu = 0

tk = Tk()
tk.title('账号登陆')
tk.geometry('400x450')

system = StringVar(value='flat')  # FLAT

var = StringVar(value='Administrator')
var1 = StringVar(value='')

def enter(ev = None):
    system.set('ridge')   #RIDGE

def leave(ev = None):
    system.set('flat')
    

def yan_zheng(ev = None):

    zhang_hao_get = zhang_hao.get()
    mi_ma_get = mi_ma.get()

    if zhang_hao_get == 'Administrator' and mi_ma_get == password:
        g.showinfo('', '登录成功')
        tk.destroy()

    else:
        var1.set('')
        g.showerror('', '用户名或密码错误')
        ci_shu + 1

def chongzhi():
    var1.set('')
    var.set('Administrator')



# img_gif = PhotoImage(file = r'C:\Users\Administrator\Desktop\apple.gif')


# button_img = Button(root, image = img_gif, text = '带图按钮')
# button_img.pack()

Label(tk, text='账号', font=('楷书', 20)).place(x=10, y=10)

zhang_hao = Entry(tk, fg='blue', font=('楷书', 20), textvariable=var)
zhang_hao.place(x=70 ,y=10)
zhang_hao.bind('<Return>', yan_zheng)

Label(tk, text='密码', font=('楷书', 20)).place(x=10, y=50)

mi_ma = Entry(tk, fg='blue', font=('楷书', 20) ,show='●', textvariable=var1)
mi_ma.place(x=70, y=50)
mi_ma.bind('<Return>', yan_zheng)# redge

deng_lu = Button(tk, text='登录', fg='blue', font=('楷书', 20) ,command=yan_zheng)# RIDGE  , relief=syst 
deng_lu.place(x=10, y=100)

deng_lu.bind("<Enter>", enter)
deng_lu.bind("<Leave>", leave)

chong_zhi = Button(tk, text='重置', fg='blue', font=('楷书', 20), command=chongzhi)
chong_zhi.place(x=120, y=100)



tk.mainloop()

一定要多点评鱼币呀
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-4-29 15:58:12 | 显示全部楼层
帖快沉了

定一下吧
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-4-29 18:36:10 | 显示全部楼层
emmmmmmm
顶一下吧
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-4-29 19:25:54 | 显示全部楼层
顶一下吧
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-27 01:45

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表