菜鸟IT的博客 >> Python
Tkinter.Canvas测试学习1:创建画布 w1=tkinter.Canvas | 画直线 w1.create_line | 画矩形 w1.create_rectangle
# -*- coding: utf-8 -*-
import tkinter
root=tkinter.Tk()
w1=tkinter.Canvas(root,width=400,height=300,background="white")
w1.pack()
# 0是起点x坐标,50是起点Y坐标,200是终点x坐标,50是终点y坐标,fill是横线填充颜色。
w1.create_line(0,50,200,50,fill="yellow")
# 再创建1条竖线,dash参数表示虚线
w1.create_line(100,0,100,100,fill="red",dash=(4,4))
# 再设置1个矩形。
w1.create_rectangle(50,25,150,75,fill="blue")
root.mainloop()
菜鸟IT博客[2022.03.04-10:14] 访问:334