博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
tkinter 02 Entry & Text 输入, 文本框
阅读量:6472 次
发布时间:2019-06-23

本文共 838 字,大约阅读时间需要 2 分钟。

  •  运行结果:
  • # coding=gbk# 注意:输入框entry没有width、height属性# 注意:button中command=insert_cursor()是错误的,不能加括号#       也即button命令都是无参的函数# 运行结果:https://s1.ax1x.com/2018/04/16/Ceuu4g.gifimport tkinterwindow = tkinter.Tk()window.title("jkn1234")window.geometry("500x500")# 文本框text = tkinter.Text(    window,    height=4)text.insert('end', '******************')text.pack()# 输入框, 注意:输入框entry没有width、height属性entry = tkinter.Entry(    window,    show='*')entry.pack()def insert_cursor():    var = entry.get()    text.insert("insert", var)def insert_end():    var = entry.get()    text.insert("end", var)button1 = tkinter.Button(    window,    command = insert_cursor,    text = "在光标处插入")button1.pack()button2 = tkinter.Button(    window,    command = insert_end,    text = "在结尾处插入")button2.pack()window.mainloop()

     

转载于:https://www.cnblogs.com/jkn1234/p/8854814.html

你可能感兴趣的文章
IntelliJ IDEA 注册码
查看>>
String字符串的截取
查看>>
DynamoDB Local for Desktop Development
查看>>
Shell编程-环境变量配置文件
查看>>
[Unity3d]DrawCall优化手记
查看>>
Struts2和Spring MVC的区别
查看>>
理解Javascript参数中的arguments对象
查看>>
p2:千行代码入门python
查看>>
bzoj1106[POI2007]立方体大作战tet*
查看>>
spring boot configuration annotation processor not found in classpath问题解决
查看>>
由中序遍历和后序遍历求前序遍历
查看>>
我学习参考的网址
查看>>
[Processing]点到线段的最小距离
查看>>
GitHub使用教程、注册与安装
查看>>
<<The C Programming Language>>讀書筆記
查看>>
git代码冲突
查看>>
解析查询 queryString 请求参数的函数
查看>>
学生选课系统数据存文件
查看>>
git bash 风格调整
查看>>
linux操作系统加固软件,系统安全:教你Linux操作系统的安全加固
查看>>