用Python实现辞职信

这篇博客展示了如何使用Python的tkinter库创建一个独特的辞职信应用。应用中,'同意'按钮会关闭窗口,而'不同意'按钮会使按钮随机移动,增加互动性。此外,还介绍了关闭窗口的模拟警告功能,为编程爱好者提供了一个有趣的实践示例。
摘要由CSDN通过智能技术生成

用Python来写一个程序员专属辞职信
主要用的是tkinter库
然后运用随机库 重置按钮 实现按钮换位

关闭按钮重置 取消关闭功能

def closeWindow():
    messagebox.showinfo(title="警告", message="关不掉吧,气不气")
    return

同意辞职

def tongyi():
    win = tk.Toplevel(window)
    win.geometry("500x150+{}+{}".format(int((screenwidth - width) / 2), int((screenheight - height) / 2)))
    win.title("辞职")
    label = tk.Label(win, text="老板大人,臣告退了,这一退,可能\n就是一辈子了,\n!!!!!∠(°ゝ°)敬礼", font=("华文行楷", 20))
    label.pack()

    btn = tk.Button(win, text="拜拜", width=10, height=2, command=window.destroy)
    btn.pack()

不同意辞职 随机移动按钮

def butongyi():
    B2.place_forget()
    B2.place(x=random.randint(100, 600), y=random.randint(100, 600))

完整代码如下:

import tkinter as tk
from tkinter import messagebox
from PIL import Image, ImageTk
import random


def closeWindow():
    messagebox.showinfo(title="警告", message="关不掉吧,气不气")
    return


def tongyi():
    win = tk.Toplevel(window)
    win.geometry("500x150+{}+{}".format(int((screenwidth - width) / 2), int((screenheight - height) / 2)))
    win.title("辞职")
    label = tk.Label(win, text="老板大人,臣告退了,这一退,可能\n就是一辈子了,\n!!!!!∠(°ゝ°)敬礼", font=("华文行楷", 20))
    label.pack()

    btn = tk.Button(win, text="拜拜", width=10, height=2, command=window.destroy)
    btn.pack()

def butongyi():
    B2.place_forget()
    B2.place(x=random.randint(100, 600), y=random.randint(100, 600))


if __name__ == '__main__':
    window = tk.Tk()
    window.title('辞职信')
    width = 600
    height = 600

    # 获取屏幕尺寸以计算布局参数,使窗口居屏幕中央
    screenwidth = window.winfo_screenwidth()
    screenheight = window.winfo_screenheight()
    alignstr = '%dx%d+%d+%d' % (width, height, (screenwidth - width) / 2, (screenheight - height) / 2)
    window.geometry(alignstr)
    # 设置窗口是否可变长、宽,True:可变,False:不可变
    window.resizable(width=False, height=True)
    window.geometry('600x600')

    window.protocol("WM_DELETE_WINDOW", closeWindow)

    L1 = tk.Label(window, text='尊敬的各位领导:')
    L1.place(x=100, y=100)


    load = Image.open('cizhi.png')
    render = ImageTk.PhotoImage(load)
    L2 = tk.Label(window, image=render)
    L2.place(x=200, y=100)

    B1 = tk.Button(window, text='同意', command=tongyi)
    B1.place(x=100, y=250)

    B2 = tk.Button(window, text='不同意', command=butongyi)
    B2.place(x=200, y=250)

    window.mainloop()

效果图:
在这里插入图片描述

在这里插入图片描述
在这里插入图片描述

好了,本文到此结束。如果对编程、计算机、程序员方面感兴趣的话,欢迎私信联系我,随时交流!点个关注,是对我莫大的鼓励!
我们这边有一个Python交流群,里面程序源码、教程视频,还有大佬解答问题,群号:821189983

评论 10
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Miku丨无形

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值