这不七夕快到了,做为编程爱好者,怎么能不漏一手呢?不知道屏幕前的你,有没有女(男)朋友呢,没有的话就赶快学会这个表白神器,让你七夕当天约会(表白)成功!!当然,这个程序非常的简单,很容易上手,接下来我就带你走一遍项目制作过程。
首先看一下项目最终效果
哎,这按钮怎么回事啊,我怎么点不了,哈哈哈哈
看着是不是很不错呢,其中里面的图片和文字都可以自己更换,在后面我又做了一个表白的,效果如下:
好了,话不多说,开始吧!
环境准备:
python(最好是3.7以上的版本)
tkinter(这是一个第三方库,没装的需要pip install tkinter)
首先,导入本次项目用的包
import random import tkinter as tk from tkinter import messagebox
接下来要创建我们的tk对象
root = tk.Tk() # 创建tk对象 root.geometry('600x400+100+100') # 设置root窗口大小,格式为"长X宽+距屏幕左+距屏幕顶" root.title('出来吃饭') # 窗口的标题 root.mainloop() # 让窗口一直显示,否则程序一运行就自动关闭
其中的root.mainloop()这一句代码需要放在全部代码的最后一行
本次项目需要用到两个frame窗口
我们先写第一个,也就是主窗口
frame1 = tk.Frame(root) # 主窗口 frame1.pack() # 给frame1添加文字标签 tk.Label(frame1,text='美若天仙的XXX小仙女:',font=24,padx=15,pady=15).pack(side=tk.LEFT,anchor=tk.N) # 导入图片并加载到frame1中 img = tk.PhotoImage(file='约吃饭.png') label_img = tk.Label(frame1,image=img,padx=30,pady=30,bd=0) label_img.pack(side=tk.LEFT,anchor=tk.N) # 写上自己的姓名 tk.Label(frame1,text='邀请人:xxx',height=25,font=24,padx=30,pady=30,anchor=tk.S).pack(side=tk.LEFT,anchor=tk.N) # 导入同意和不同意图片并部署到frame1中 yes_img = tk.PhotoImage(file='同意.png') no_img = tk.PhotoImage(file='不同意.png') yes_btn = tk.Button(frame1,image=yes_img,bd=0) no_btn = tk.Button(frame1,image=no_img,bd=0) yes_btn.place(relx=0.3,rely=0.8,anchor=tk.CENTER) no_btn.place(relx=0.7,rely=0.8,anchor=tk.CENTER)
看一下效果
接着我们要写第二个frame窗口,也就是点击同意按钮跳转的画面
# 创建frame2,即点击主窗口frame1中的同意按钮时跳转的画面窗口 frame2 = tk.Frame(root) # 写入内容 tk.Label(frame2, text='好的,那就今晚x点x地点不见不散!', font=('黑体',20), justify=tk.LEFT, height=300, fg='red', padx=50).pack() tk.Button(frame2,text='退出',command=root.quit).place(relx=0.9,rely=0.8)
看一下效果
最后,我们需要编写逻辑代码
# 定义一个退出函数,用于修改点击主窗口右上角的X时出现的提示 def on_exit(): messagebox.showwarning(title='提示',message='此路不通!') root.protocol('WM_DELETE_WINDOW',on_exit) # 定义一个移动函数,用于当鼠标移到不同意按钮时,按钮会随机移动 def move(event): no_btn.place(relx=random.random(),rely=random.random(),anchor=tk.CENTER) no_btn.bind('<Enter>',move) # 给不同意按钮绑定事件 # 定义一个函数,用于当点击同意按钮时切换到frame2窗口 def sure(): frame1.pack_forget() frame2.pack() yes_btn.config(command=sure) # 给同意按钮绑定事件
最后的效果图就是文章开头的效果
表白的程序代码如下:
import random import tkinter as tk from tkinter import messagebox root = tk.Tk() root.geometry('600x400+100+100') root.title('Love You') frame1 = tk.Frame(root) frame1.pack() tk.Label(frame1,text='美若天仙的XXX小仙女:',font=24,padx=15,pady=15).pack(side=tk.LEFT,anchor=tk.N) img = tk.PhotoImage(file='表白.png') label_img = tk.Label(frame1,image=img,padx=30,pady=30,bd=0) label_img.pack(side=tk.LEFT,anchor=tk.N) tk.Label(frame1,text='表白人:xxx',height=25,font=24,padx=30,pady=30,anchor=tk.S).pack(side=tk.LEFT,anchor=tk.N) yes_img = tk.PhotoImage(file='同意.png') no_img = tk.PhotoImage(file='不同意.png') yes_btn = tk.Button(frame1,image=yes_img,bd=0) no_btn = tk.Button(frame1,image=no_img,bd=0) yes_btn.place(relx=0.3,rely=0.8,anchor=tk.CENTER) no_btn.place(relx=0.7,rely=0.8,anchor=tk.CENTER) frame2 = tk.Frame(root) # frame2.pack() tk.Label(frame2, text='嘿嘿,那就今晚出来见个面吧!', font=('黑体',20), justify=tk.LEFT, height=300, fg='red', padx=50).pack() tk.Button(frame2,text='退出',command=root.quit).place(relx=0.9,rely=0.8) def on_exit(): messagebox.showwarning(title='提示',message='此路不通!') root.protocol('WM_DELETE_WINDOW',on_exit) def move(event): no_btn.place(relx=random.random(),rely=random.random(),anchor=tk.CENTER) no_btn.bind('<Enter>',move) def sure(): frame1.pack_forget() frame2.pack() yes_btn.config(command=sure) root.mainloop()
项目打包
我们现在写的只是能在我们电脑上而且安装了python环境的d代码,如果我们需要发给别人,别人没有安装python,那我们就可以把这个代码打包成exe可执行程序,别人电脑没有装python就也能运行了。
我们借助的程序打包工具是pyinstaller,是第三方库。没有安装的小伙伴需要pip install pyinstaller。
安装之后来到我们程序的路径下,打开终端,输入pyinstaller -F -w 表白.py ,回车即可
命令的模板是:pyinstaller -F -w -i D:\xxx\xxx\gui\1.ico D:\xxx\xxx\gui\video_gui.py
参数说明:
-i:应用程序的图标
-w: 不显示命令框
打包完成后会生成两个文件夹
找到dist文件下面的表白.exe双击打开即可,但是在这里会出现一个错误
这是路径的问题, 第一种解决方案是将dist文件下的程序挪到 上一级,也就是跟图片素材在同一个文件夹中;第二种解决方案是在打包之前,将代码中凡是涉及到路径的地方前面加/dist/,x修改路径即可。最后我们就可以将文件一起压缩发给朋友,让他点击exe文件即可。