基于Python的自媒体小助手---登录页面的实现代码

作者:MonkT 时间:2021-12-27 16:46:17 

核心技术:Python3.7

GUI技术:Tkinter (Python已经内置)

好多文章写Python GUI之tkinter窗口视窗教程大集合(看这篇就够了) 我看了N遍也没够好多东西都没有就基本的介绍。。。还不够。我搞这个也是为了项目服务先给大家来个截图吧,其实知识点还是蛮多的。

基于Python的自媒体小助手---登录页面的实现代码

在window上有点瑕疵了,在mac上海可以吧。使用到的技术我罗列一下完了在分享给大家代码。

1、窗体设置标题和设置图标,图标格式是ICO的,一般我们事宜Png转一下。https://www.easyicon.net/covert/ 这是转换的网址。

2、Tkinter输入控件、标签控件、按钮控件、复选框控件,我就不多说了网上有很多。需要注意的是密码显示要用show=‘*'

3、Tkinter 的place部局,就是绝对定位,因为不允许改变大小就绝对定位了。

4、按钮事件传参数需要使用lambda表达式。

5、背景色采用的是白色所以Lable的背景色都采用了白色。

6、最后一个就是屏幕居中,这个网上也一堆大家自己百度吧。

代码如下:


import tkinter as tk
import tkinter.font as tkFont
from tkinter import messagebox

class LoginView():
 window = tk.Tk()
 def __init__(self):
   self.initializeUI()
 def initializeUI(self):
   self.window.iconbitmap("./resource/icon/hunter.ico")
   self.window.title('猎人村自媒体小助手平台登录')
   background_color="white"
   self.window.configure(background=background_color)
   #self.window.overrideredirect(True)
   photo = tk.PhotoImage(file="./resource/images/hunter.png")
   label = tk.Label(image=photo,width=32, bg=background_color)
   label.image = photo
   label.place(x=60,y=40)
   ft = tkFont.Font(family='Fixdsys', size=16, weight=tkFont.BOLD)
   tk.Label(self.window, text="猎人村自媒体小助手",font=ft, bg=background_color).place(x=100,y=44)
   photo = tk.PhotoImage(file="./resource/images/splitline.png")
   label = tk.Label(image=photo)
   label.image =photo
   label.place(x=0,y=90)
   # 标签 用户名密码 #F3F3F4
   entryBackGroundColor="#F3F3F4"
   userNameFont = tkFont.Font(family='Fixdsys', size=10)
   tk.Label(self.window, text='请输入用户名:',font=userNameFont, bg=background_color).place(x=20, y=150)
   userName = tk.StringVar()
   tk.Entry(self.window, highlightthickness=1,bg=entryBackGroundColor,textvariable =userName).place(x=20, y=180,width=320, height=30)
   passWordFont = tkFont.Font(family='Fixdsys', size=10)
   passWord = tk.StringVar() #
   tk.Label(self.window, text='请输入密码:',font=passWordFont, bg=background_color).place(x=20, y=220)
   tk.Entry(self.window, highlightthickness=1, bg=entryBackGroundColor,textvariable =passWord, show='*').place(x=20, y=250,width=320, height=30)
   remeberMeFont=tkFont.Font(family='Fixdsys', size=12)
   tk.Checkbutton(self.window, text="记住我",fg="#0081FF",variable="0",font=remeberMeFont, bg=background_color).place(x=20, y=300)
   tk.Button(self.window, text='立即登录', font=('Fixdsys', 14, 'bold'), width=29,fg='white',bg="#0081FF",command=lambda :self.login(userName,passWord)).place(x=20, y=330)
   regester_info=tkFont.Font(family='Fixdsys', size=10)
   tk.Label(self.window, text='还没有账号?:', font=regester_info, bg=background_color).place(x=102,y=375)
   tk.Label(self.window, text='立即注册', font=regester_info, bg=background_color,fg="#FFA500").place(x=185,y=375)
   w = 370
   h = 480
   sw = self.window.winfo_screenwidth()
   # 得到屏幕宽度
   sh = self.window.winfo_screenheight()
   # 得到屏幕高度
   # 窗口宽高为100
   x = (sw - w) / 2
   y = (sh - h) / 2
   self.window.geometry("%dx%d+%d+%d" % (w, h, x, y))
   self.window.mainloop()
   pass
 def login(self,userName,passWord):
   errMessage=""
   if len(userName.get())==0:
     errMessage=errMessage+"用户名不能为空!\r"
   if len(passWord.get())==0:
     errMessage=errMessage+"密码不能为空!"
   if errMessage!="":
     messagebox.showinfo('提示', errMessage)
   print(passWord.get())
   pass

基于Python的自媒体小助手---登录页面的实现代码

强调一下提示信息要一次性提示完毕,不用输入完成用户后在提示密码,这个比较简单写起来也没啥难度,对于输入项目多的这个友好型一定要做到。

来源:https://blog.csdn.net/zy0412326/article/details/106528054

标签:Python,自媒体小助手,登录页面
0
投稿

猜你喜欢

  • SQL 重复记录问题的处理方法小结

    2024-01-16 14:56:36
  • MySQL 一次执行多条语句的实现及常见问题

    2024-01-12 20:03:23
  • YOLOv5车牌识别实战教程(四)模型优化与部署

    2021-04-22 01:32:27
  • python中requests爬去网页内容出现乱码问题解决方法介绍

    2023-09-14 01:00:11
  • Python中的类对象示例详解

    2022-03-20 12:40:50
  • Python安装与基本数据类型教程详解

    2022-04-18 18:44:59
  • Python如何批量生成和调用变量

    2023-11-27 21:21:08
  • Python base64编码解码实例

    2022-06-11 07:08:27
  • Python运行的17个时新手常见错误小结

    2023-05-20 00:13:17
  • Oracle 插入超4000字节的CLOB字段的处理方法

    2009-07-12 18:52:00
  • Asp截获后台登录密码的代码

    2012-12-04 20:20:38
  • Python提取Word中图片的实现步骤

    2022-11-07 20:25:10
  • linux centos 7.x 安装 python3.x 替换 python2.x的过程解析

    2021-11-27 02:46:43
  • 如何导出python安装的所有模块名称和版本号到文件中

    2022-07-26 15:38:59
  • 通过Cursor工具使用GPT-4的方法详解

    2023-08-28 05:08:34
  • Laravel5中实现模糊匹配加多条件查询功能的方法

    2024-05-03 15:28:35
  • Web Jmeter–接口测试工具详解

    2022-06-27 04:24:32
  • Golang中goroutine和channel使用介绍深入分析

    2023-07-07 16:51:48
  • Javascript 中对中文长度对行判断

    2009-07-05 18:39:00
  • Python全栈之学习CSS(2)

    2022-11-11 13:04:54
  • asp之家 网络编程 m.aspxhome.com