资源简介
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
- 上一篇:python编程小游戏汉诺塔hanoi
- 下一篇:微博图片视频小爬虫
相关资源
- 微博图片视频小爬虫
- python编程小游戏汉诺塔hanoi
- 小甲鱼零基础入门学习Python+全套源码
- pygraphviz python3.4 轮子
- 用Python编写潮流计算极坐标
- Python-图像操作
- python建模
- windows将Python添加到注册表
- 位图转g代码轮廓加工源码
- 基于神经网络控制一阶倒立摆小车
- 基于Python爬虫的股票信息爬取保存到
- 基于NMF和PCA实现人脸图像特征提取与
- 基于PCA实现鸢尾花数据集降维
- 基于KNN实现“手写识别”
- 基于sklearn模块的神经网络实现“手写
- 2018最新BAT-python面试题内附答案
- BM3D去噪python代码
- insert_test_data.py
- 栅格投影转换.py
- IDW插值批处理
- 神经网络模型python模板
- python3程序设计习题答案第3版
- python核心基础.txt
- 尚硅谷2018年Python视频
- 基于用户最近邻模型的协同过滤算法
- python自写的车牌识别小程序,完全自
- python面试笔记培训就业必回
- Django+Python搭建的购物网站
- python利用scipy的optimize实现非线性最小
- Python简单网页爬虫
评论
共有 条评论