• 大小: 3KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-01-03
  • 语言: Python
  • 标签: python  tkinter  tk  画图  

资源简介

基于python3.6的tkinter库制作的绘图小程序,源于《python宝典》的例子。能绘制直线、矩形、椭圆和四分之一圆。

资源截图

代码片段和文件信息

# -*- coding:utf-8 -*-
# file: tkinterDraw.py
#

import tkinter
class MyButton:
    def __init__(selfrootcanvaslabeltype):
        self.root = root
        self.canvas = canvas
        self.label = label
        if type == 0:
            button = tkinter.Button(roottext =‘Draw Line‘command = self.DrawLine)
        elif type == 1:
            button = tkinter.Button(roottext =‘Draw Arc‘command = self.DrawArc)
        elif type == 2:
            button = tkinter.Button(roottext =‘Draw Rectangle‘command = self.DrawRec)
        elif type == 3:
            button = tkinter.Button(roottext =‘Draw Oval‘command = self.DrawOval)
        button.pack(side = ‘left‘)
        
    def DrawLine(self):
        self.label.text.set(‘Draw Line‘)
        self.canvas.SetStatus

评论

共有 条评论