即將到來因此,我們堅持這一點,現在變得非常絕望..我們必須使用graphics.py庫創建一個迷你程序。所以基本上我想知道的是我怎麼能像開始菜單,然後當用戶點擊..它改變到'遊戲'的不同框架本質上?使用.undraw()
功能如何更改框架,但仍然使用Zelle的graphics.py使用相同的窗口?
我的朋友建議,但我不認爲,對於文本&也只是改變了.setText("")
爲空字符串作爲即時通訊試圖擺脫標題&副標題的作品...這是我的代碼:
from graphics import *
# create the window to hold the contents
win = GraphWin("SHAPES FRENZY", 800, 500)
win.setBackground("Black")
#Setting the Title Page:
title=Text(Point(400,250),"Shapes Frenzy.")
title.draw(win)
#Subheading
subheading=Text(Point(400,290), "Click anywhere to continue.")
subheading.draw(win)
#Next Frame
clickPoint = win.getMouse()
if clickPoint == True:
title.undraw() #THIS DOESNT WORK.
subheading.undraw()
#Setting up Second frame of program.
hi=Text(Point(500,250),"Please Work.")
hi.setFace('courier')
hi.draw(win)
win.getMouse() # Pause to view result
win.close() # Close window when done
你剛剛救了我的生命IT作品!謝謝謝謝!!!!!!!!是的請解釋!我真的不明白。 – Rita