Python3 Tkinter基础 Python3 Tkinter基础 Canvas create_rectangle 画一个矩形

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3 Tkinter基础 Python3 Tkinter基础 Canvas create_rectangle 画一个矩形相关的知识,希望对你有一定的参考价值。

 镇场诗:
    清心感悟智慧语,不着世间名与利。学水处下纳百川,舍尽贡高我慢意。
    学有小成返哺根,愿铸一良心博客。诚心于此写经验,愿见文者得启发。
——————————————————————————————————————————

ex1:
  code:

 

 

from tkinter import *

root=Tk()

w = Canvas(
		   root,
		   width=200,
		   height=200,
		   background="white"
		  )
w.pack()
			
yellowLine = w.create_line(0,100,200,100,fill=‘yellow‘)

redLine=w.create_line(100,0,100,200,fill=‘red‘,dash=(4,4))

buleRect=w.create_rectangle(50,50,150,150,fill=‘blue‘)

mainloop()

 



  result:

技术分享

 

 

ex2:

  code:

 

from tkinter import *

root=Tk()

w = Canvas(
		   root,
		   width=200,
		   height=200,
		   background="white"
		  )
w.pack()
			
yellowLine = w.create_line(0,100,200,100,fill=‘yellow‘)

redLine=w.create_line(100,0,100,200,fill=‘red‘,dash=(4,4))

buleRect=w.create_rectangle(50,50,150,150,fill=‘blue‘)

#使用coords方法移动yellowLine线,移动到
w.coords(yellowLine,
		0,25,100,100)

#使用itemconfig设置一个对象的属性值
w.itemconfig(buleRect,fill=‘red‘)
#矩形框变红了

#使用delete方法删除readLine
w.delete(redLine)

mainloop()

 

  result:

技术分享

 

 


——————————————————————————————————————————
博文的精髓,在技术部分,更在镇场一诗。Python版本3.5,系统 Windows7。
Python是优秀的语言,值得努力学习。我是跟着小甲鱼视频教程学习的,推荐。
我是一个新手,所以如果博文的内容有可以改进的地方,甚至有错误的地方,请留下评论,我一定努力改正,争取成就一个良心博客。
注:此文仅作为科研学习,如果我无意中侵犯了您的权益,请务必及时告知,我会做出改正。












以上是关于Python3 Tkinter基础 Python3 Tkinter基础 Canvas create_rectangle 画一个矩形的主要内容,如果未能解决你的问题,请参考以下文章

Python3 tkinter基础 Tk quit 点击按钮退出窗体

Python3 tkinter基础 TK title 设置窗体的标题

Python3 tkinter基础 Tk quit 点击按钮退出窗体

Python3 Tkinter基础 Label 显示的文字换行

Python3 tkinter基础 Menubutton 点击按钮出现下拉菜单

Python3 Tkinter基础 点击按钮退出窗体 root.quit