if count_attk > 1: root = tk.Tk() root.withdraw() messagebox.showwarning("警告", "检测到异常流量!")改写成不显示感叹号的弹窗
时间: 2024-05-07 07:19:57 浏览: 66
异常提示弹窗优化
可以这样改写:
```
if count_attk > 1:
root = tk.Tk()
root.withdraw()
messagebox.showwarning("警告", "检测到异常流量", icon="warning")
```
将 `messagebox.showwarning()` 函数的 `icon` 参数设置为 `"warning"` 即可显示一个黄色三角形图标,代替原来的感叹号图标。
阅读全文