• 大小: 3KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-05-12
  • 语言: Python
  • 标签: Python  

资源简介

Python 简单的登录界面源码,希望大家多多指教指教。。。。

资源截图

代码片段和文件信息

import tkinter as tk
import pymysql.cursors
from tkinter import messagebox

def center_window(root width height):  
    screenwidth = root.winfo_screenwidth()  
    screenheight = root.winfo_screenheight()  
    size = ‘%dx%d+%d+%d‘ % (width height (screenwidth - width)/2 (screenheight - height)/2)  
    print(size)  
    root.geometry(size)  

window = tk.Tk()
window.title(‘uiw 财务系统 V2.1.3‘)
center_window(window900600)

# welcome image
canvas = tk.Canvas(window height=400 width=900)#创建画布
image_file = tk.PhotoImage(file=‘E:/python/www/uiw_login_message.png‘)#加载图片文件
image = canvas.create_image(00 anchor=‘nw‘ image=image_file)#将图片置于画布上
canvas.pack(side=‘top‘)#放置画布(为上端)
 
# user information
tk.Label(window text=‘UserName: ‘).place(x=250 y= 400)#创建一个‘label‘名为‘User name: ‘置于坐标(50150)
tk.Label(window text=‘PassWord: ‘).place(x=250 y= 430)

var_usr_name = tk.StringVar()
var_usr_pwd = tk.StringVar()

entry_usr_name = tk.Entry(window textvariable=var_usr_name).place(x=350 y= 400)#创建一个‘entry‘,显示为变量‘var_usr_name‘即图中的‘example@python.com‘
entry_usr_pwd = tk.Entry(window textvariable=var_usr_pwd show=‘-‘).place(x=350 y= 430)#‘show‘这个参数将输入的密码变为‘***‘的形式

def usr_login():
user_name = v

评论

共有 条评论