运行时弹出界面
当点击“不要”时弹出
当点击“×”时弹出
【注】
import tkinter as tk
import tkinter.messagebox
root = tk.Tk()
root.title('?')
root.resizable(0, 0)
root.wm_attributes("-toolwindow", 1)
screenwidth = root.winfo_screenwidth()
screenheight = root.winfo_screenheight()
widths = 300
heights = 100
x = (screenwidth - widths) / 2
y = (screenheight - heights) / 2
root.geometry('%dx%d+%d+%d' % (widths, heights, x, y)) # 设置在屏幕中居中显示
tk.Label(root, text='亲爱的,做我女朋友好吗?', width=37, font=('宋体', 12)).place(x=0, y=10)
def OK(): # 同意按钮
root.destroy()
# 同意后显示漂浮爱心
def NO(): # 拒绝按钮,拒绝不会退出,必须同意才可以退出哦~
tk.messagebox.showwarning('?', '再给你一次机会!')
def closeWindow():
tk.messagebox.showwarning('?', '逃避是没有用的哦')
tk.Button(root, text='好哦', width=5, height=1, command=OK).place(x=80, y=50)
tk.Button(root, text='不要', width=5, height=1, command=NO).place(x=160, y=50)
root.protocol('WM_DELETE_WINDOW', closeWindow) # 绑定退出事件
root.mainloop()
这是一段使用Python的tkinter库实现的简单GUI程序,目的是用一个小窗口向用户求爱,请求对方成为自己的女朋友。
先介绍一下代码的基本框架:
下面我们来详细分析一下代码:
Python的tkinter库是一个方便易用的GUI库,用于创建窗口和各种GUI组件,如Label、Button、Entry等等。使用前需要先导入tkinter库。
import tkinter as tk
import tkinter.messagebox
其中tkinter库被导入并重命名为tk,这样可以更方便地调用其函数。
在程序中创建一个窗口对象:
root = tk.Tk()
其中root是窗口对象的名称,可以自己定义。这一行代码创建了一个名为root的窗口对象。
接下来为窗口设置标题、大小和位置:
root.title('?')
root.resizable(0, 0)
root.wm_attributes("-toolwindow", 1)
screenwidth = root.winfo_screenwidth()
screenheight = root.winfo_screenheight()
widths = 300
heights = 100
x = (screenwidth - widths) / 2
y = (screenheight - heights) / 2
root.geometry('%dx%d+%d+%d' % (widths, heights, x, y))
其中设置窗口大小和位置的代码比较复杂,可以简单解释一下:
其他还设置了以下两行代码:
root.resizable(0, 0)
root.wm_attributes("-toolwindow", 1)
在窗口中添加Label和Button:
tk.Label(root, text='亲爱的,做我女朋友好吗?', width=37, font=('宋体', 12)).place(x=0, y=10)
tk.Button(root, text='好哦', width=5, height=1, command=OK).place(x=80, y=50)
tk.Button(root, text='不要', width=5, height=1, command=NO).place(x=160, y=50)
定义两个Button的回调函数:
def OK():
root.destroy()
# 同意后显示漂浮爱心
def NO():
tk.messagebox.showwarning('?', '再给你一次机会!')
def closeWindow():
tk.messagebox.showwarning('?', '逃避是没有用的哦')
这里定义了三个函数,分别是OK、NO、closeWindow。其中:
调用mainloop()函数,开始显示窗口并等待用户操作。
root.mainloop()
当用户点击“好哦”按钮时,窗口会关闭,程序结束。当用户点击“不要”按钮时,窗口不会关闭,继续等待用户操作。当用户点击窗口右上角的关闭按钮时,弹出提示框后,窗口不会关闭,继续等待用户操作。
这就是整个程序的代码和逻辑。虽然是一个简单的小例子,但是体现了tkinter库的基本用法,也比较有趣。