项目需要,做了一个demo直接上代码供大家参考,并且留为记录
需要更深入了解,可以加微信qypangu相信交流,请注时"csdn python"
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import tkinter
import threading
import time
class section:
def onPaste(self):
print("显示AI机器人一天的工作")
def onCopy(self):
print("如果要现在开始工作,就点开始,否则会根据日常的安排工作")
def onCut(self):
print("学习新的工作技术,只要教过AI一次,就会了,以后的工作都可以交给他")
def move(event):
global x,y,root
new_x = (event.x-x)+root.winfo_x()
new_y = (event.y-y)+root.winfo_y()
s = "300x300+" + str(new_x)+"+" + str(new_y)
root.geometry(s)
print("当把我放到左上角200*200的区域时我会走人的,当前是x:%s,y:%s"%(new_x,new_y))
if new_x<50 and new_y<50:
exit()
def button_1(event):
global x,y
x,y = event.x,event.y
print("event.x, even