You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
import tkinter as tk
|
|
|
|
|
|
|
|
|
|
root = tk.Tk()
|
|
|
|
|
photo = tk.PhotoImage(file='images\\BJoker.gif') #创建一个图片对象
|
|
|
|
|
textLabel = tk.Label(root,
|
|
|
|
|
text='一张牌',
|
|
|
|
|
justify = LEFT, #定义多行文本如何对齐。可取值有:LEFT, RIGHT, 或 CENTER
|
|
|
|
|
image=photo) #设置标签图片
|
|
|
|
|
textLabel.pack()
|
|
|
|
|
root.mainloop()
|