前言
使用tkinter库创建窗口应用程序示例,包含不同鼠标样式标签。
一、方法
import tkinter as tk
class Mouse_Style:
def __init__(self):
self.root = tk.Tk()
self.root.title('样式')
self.root.geometry("200x520+1100+150")
self.interface()
def interface(self):
"""鼠标不同样式显示"""
for i in [
'arrow', 'circle', 'clock', 'cross', 'dotbox', 'exchange',
'fleur', 'hand2', 'heart', 'man', 'mouse', 'pirate', 'plus',
'shuttle', 'sizing', 'spider', 'spraycan', 'star', 'target',
'tcross', 'trek', 'watch'
]:
label = tk.Label(self.root, text=i, cursor=i, relief='solid')
label.pack(side='top', fill='x')
if __name__ == '__main__':
run = Mouse_Style()
run.root.mainloop()