gpt4 book ai didi

python - 如何在 turtle 中创建按钮?

转载 作者:行者123 更新时间:2023-12-01 06:31:19 25 4
gpt4 key购买 nike

如何在turtle、python中创建一个简单的按钮,如果你点击它,你可以定义它来打印消息,或者做其他更复杂的事情。

最佳答案

您可以将 turtle 嵌入 tkinter,正如 @JoshuaNixon 在他的评论中建议的那样,使用 tkinter 按钮来控制您的 turtle Canvas 。如果您想在独立 turtle 中工作,我建议使用 turtle 作为按钮,因为它们可以被强制转换为任何形状和/或颜色,并且具有单独的onclick事件处理程序,因此您不必弄清楚用户在屏幕上单击的位置:

from turtle import Screen, Turtle

CURSOR_SIZE = 20
FONT_SIZE = 12
FONT = ('Arial', FONT_SIZE, 'bold')

def draw_onclick(x, y):
turtle.dot(100, 'cyan')

button = Turtle()
button.hideturtle()
button.shape('circle')
button.fillcolor('red')
button.penup()
button.goto(150, 150)
button.write("Click me!", align='center', font=FONT)
button.sety(150 + CURSOR_SIZE + FONT_SIZE)
button.onclick(draw_onclick)
button.showturtle()

turtle = Turtle()
turtle.hideturtle()

screen = Screen()
screen.mainloop()

请注意,Turtle.onclick()Screen().onclick 不同 - 一个仅在单击特定 turtle 实例时发生,而另一个仅在单击时发生屏幕上的任何位置。

关于python - 如何在 turtle 中创建按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59902849/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com