Python之tkinter:动态演示调用python库的tkinter带你进入GUI世界(Button展示图片事件)

Python之tkinter:动态演示调用python库的tkinter带你进入GUI世界(Button展示图片事件)

导读
动态演示调用python库的tkinter带你进入GUI世界(Button展示图片事件)


tkinter案例应用—Button展示图片事件

1、点击下方按钮即可获得logo图标

from tkinter import *
from PIL.ImageTk import PhotoImage

root = Tk()
root.title("Jason niu工作室")
theLabel=tk.Label(root,text="进入GUI世界,请开始你的表演!\n点击下方按钮即可获得Jason niu工作室的logo图标")
theLabel.pack() 

text = Text(root,width=40,height=15)  #设置文本框的宽度高度
text.pack()

text.insert(INSERT,"欢迎进入Jason niu工作室\n")  #INSERT是光标所在位置
text.insert(END,"官网:http://jason-niu.com")

photo=PhotoImage(file="G:\创业\image\云崖牛logo80小.jpg")

def show():
    text.image_create(END, image=photo)
    print("呦,你真特么的敢点我~")

b1 = Button(text,text="点我点我",font=("黑体",10),fg="yellow",bg="blue",command=show)
text.window_create(INSERT,window=b1) #窗口内在光标所在处插入按钮

mainloop()

2、tkinter应用案例:利用text组件实现输入文本内容

#tkinter应用案例:利用text组件实现输入文本内容
from tkinter import *
from PIL.ImageTk import PhotoImage

root = Tk()
root.title("Jason niu工作室")
theLabel=tk.Label(root,text="进入GUI世界,请开始你的表演!\n点击下方按钮即可获得币分类")
theLabel.pack() 

text = Text(root,width=200,height=150)  #设置文本框的宽度高度
text.pack()

text.insert(INSERT,"欢迎进入Jason niu工作室\n")  #INSERT是光标所在位置
text.insert(END,"官网:http://jason-niu.com")

photo=PhotoImage(file="G:\创业\image\coin.png")

def show():
    text.image_create(END, image=photo)
    print("呦,你真特么的敢点我~")

b1 = Button(text,text="点我学习各种币",font=("黑体",10),fg="yellow",bg="blue",command=show)
text.window_create(INSERT,window=b1) #窗口内在光标所在处插入按钮

mainloop()
(0)

相关推荐