Tkinter模块是Python 的内置模块, "Tk 接口" 是Python的标准内置 Tk GUI工具包的接口。

下面的代码基于Python2.7

#----python2.7 ----

import Tkinter as tk     #注意与 import 的区别

root =tk.Tk()   # 创建窗口对象
root.title("hello world")
root.geometry('500x300')

#创建标签1
tk.Label(root, text="显示", bg="green", font=("Arial", 12), width=5, height=1).place(x=20,y=30)

# 定义按钮函数

def printhello():
    EditText.insert('1.0', "hello\n")
 
EditText = tk.Text(root,width=20,height=10)   #创建文本框

EditText.place(x=20,y=70)

# 方法一 创建按钮控件

#tk.Button(root, text="按钮", command = printhello,width=5, height=2).place(x=200,y=60)

 # 方法二 创建按钮控件

btn_test=tk.Button(root, text="按钮", command = printhello,width=5, height=2)      

btn_test.place( x=200,y=60)

root.mainloop()                 # 进入消息循环

python 模态窗口 python窗体模块_Text

点击“按钮”,左侧文本框 插入一条“ hello”。