• 大小: 0.71KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 语言: Python
  • 标签: windows  python  d  桌面  t  

资源简介


资源截图

代码片段和文件信息

#!C:\Python27\python.exe
# -*- coding: utf-8 -*-

from tkinter import *
import tkinter.messagebox as messagebox

class Application(frame):
    def __init__(self master=None):
        frame.__init__(self master)
        self.pack()
        self.createWidgets()

    def createWidgets(self):
        self.nameInput = Entry(self)
        s

评论

共有 条评论