你正在为一个python小型游戏设计界面,需要一个按钮,玩家点击后会显示一个消息表示游戏开始。如何绑定一个函数到按钮点击事件,以便在点击时执行?( )
button = Button(root, text="开始游戏", command=startGame)
button = Button(root, text="开始游戏", onclick=startGame)
button = Button(root, text="开始游戏", action=startGame)
button = Button(root, text="开始游戏", event=startGame)