-
大小: 1KB文件類型: .py金幣: 1下載: 0 次發布日期: 2021-05-11
- 語言: Python
- 標簽: tkinterGUI??
資源簡介
個人編寫的小程序,實現拓片在GUI的拖動,十分盈動好用
代碼片段和文件信息
import?tkinter
import?time
app?=?tkinter.Tk()
app[‘width‘]??=?1000
app[‘height‘]?=?6000
canvas?=?tkinter.Canvas(appbg=‘white‘width=1000height=6000)
image=tkinter.PhotoImage(file=‘C:/Users/穆尼/Desktop/python/python/tim.gif‘)
id_actor=canvas.create_image(8080image=image)
flag=False
def?onLeftButtonDown(event):
????global?flag
????flag=True
????while?flag:
????????canvas.move(id_actor50)
????????canvas.update()
????????time.sleep(0.05)
????????canvas.bind(‘‘onLeftButtonDown)
def?onRightButtonUp(event):
????global?flag
????flag=False
canvas.bind(‘‘onRightButtonUp)
def?keyControl(event):
????if?event.
評論
共有 條評論