运行环境
PyCharm 2023.2.1
python3.11
具体内容
源代码
import tkinter as tk
from tkinter import messagebox
import threading
class PopupGenerator:
def __init__(self):
self.root = tk.Tk()
self.root.geometry("200x120")
self.root.title("无限弹窗")
self.root.protocol("WM_DELETE_WINDOW", lambda: None) # 用户不可关闭弹窗一
self.common_style = {"font": ("华文新魏", 14)}
self.label = tk.Label(self.root, text="恭喜你打开了这个程序", **self.common_style, fg="red")
self.label.pack(pady=20)
self.close_program_button = tk.Button(self.root, text="关闭程序", command=self.try_detox, **self.common_style,
bg="green", fg="white")
self.close_program_button.pack(pady=10)
self.popup_count = 0
self.detox_attempts = 0
self.popup_positions = [] # 存储已存在弹窗的位置信息
服务器托管网self.generate_popup()
def generate_popup(self):
if self.popup_count
运行结果如图
点击运行时
点击关闭程序按钮(未点击足够次数)
点击关闭程序按钮(点击次数足够)
关闭多试一下弹窗(仅并没有用弹窗可关闭)
关闭程序的方法
1、任务管理器结束任务
2、点击足够次数的关闭程序
注意事项
1、没有什么技服务器托管网术含量,仅娱乐使用
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
一、使用NuGet安装【Aliyun.OSS.SDK】 注意:如果有多个项目,需要在具体使用的项目跟启动项目都安装同一版本的Aliyun.OSS.SDK 二、上传代码 using Aliyun.OSS; using System.IO; using Syste…