tk 有的时候报:libpng warning: iCCP: known incorrect sRGB profile 有时无法插入

2401_87037646 2024-08-30 21:06:36

import tkinter as tk
def a():
    text.insert(0.0,"114514\n")
def b():
    print(text.get("1.0",tk.END))
def c():
    text.delete(1.0,tk.END)
root=tk.Tk()
scrollbar=tk.Scrollbar(root)
scrollbar.pack(side=tk.RIGHT,fill=tk.Y)
text=tk.Text(root,padx=40,pady=10)
text.pack()
button1=tk.Button(root,text="插入",command=a)
button1.pack()
button2=tk.Button(root,text="获取",command=b)
button2.pack()
button3=tk.Button(root,text="清空",command=c)
button3.pack()
scrollbar.configure(command=text.yview)
root.mainloop()

...全文
118 回复 打赏 收藏 转发到动态 举报
写回复
用AI写文章
回复
切换为时间正序
请发表友善的回复…
发表回复

6,029

社区成员

发帖
与我相关
我的任务
社区描述
人生苦短,我用python
社区管理员
  • Python 学习者
  • 嗨学编程
  • 松鼠爱吃饼干
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

欢迎来到Python学习者们的社区,

 

本社区分享你需要的文章、问题解答、技术互助、学习资源、面试系列等等

 

欢迎你的加入,祝你学有所成~

试试用AI创作助手写篇文章吧