gpt4 book ai didi

python - 在 Tkinter 中删除椭圆的轮廓?

转载 作者:太空狗 更新时间:2023-10-29 22:21:33 25 4
gpt4 key购买 nike

默认情况下,我在 Canvas 上绘制的圆圈具有黑色轮廓。我尝试不使用颜色,而是以某种方式使轮廓消失。

import tkinter

class Draw:
def __init__(self):
self._root_window = tkinter.Tk()
self._canvas = tkinter.Canvas(master = self._root_window,
width = 500, height = 500,
background = '#1E824C')
self._canvas.pack()
self._canvas.create_oval(100,100,250,250, fill = 'white')
self._root_window.mainloop

if __name__ == '__main__':
Draw()

enter image description here

最佳答案

outline="" 参数添加到 create_oval 方法。

然后您可以创建椭圆形链接:

self._canvas.create_oval(100,100,250,250, fill = 'white', outline="")

关于python - 在 Tkinter 中删除椭圆的轮廓?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37582572/

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