资源简介
https://blog.csdn.net/u012156341/article/details/89486070
本篇博客相关代码下载
代码片段和文件信息
import tkinter
from tkinter import ttk
class InfoWindows(tkinter.frame):
# 构造函数,传入其所属的master界面
def __init__(selfmaster):
# 生成当前类所属frame,并使用表格布局设置器放置位置
frame = tkinter.frame(master)
frame.grid(row=0column=1)
# 设置接收用户输入的Entry控件,并绑定变量
self.ev = tkinter.Variable()
self.entry = tkinter.Entry(frametextvariable=self.ev)
self.entry.pack()
# 设置大文本控件
self.txt = tkinter.Text(frame)
self.txt.pack()
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 616 2019-04-24 09:38 file_explorer\infoWindow.py
文件 288 2019-04-24 09:42 file_explorer\treeFile.py
文件 2304 2019-04-24 09:41 file_explorer\treeWindow.py
文件 0 2019-04-18 15:39 file_explorer\__init__.py
文件 669 2019-04-24 09:39 file_explorer\__pycache__\infoWindow.cpython-36.pyc
文件 1754 2019-04-19 16:37 file_explorer\__pycache__\treeWindow.cpython-36.pyc
文件 1882 2019-04-19 14:49 file_explorer\登录界面.py
目录 0 2019-04-24 09:39 file_explorer\__pycache__
目录 0 2019-04-24 09:42 file_explorer
----------- --------- ---------- ----- ----
7513 9
相关资源
- Python:网络爬虫抓取豆瓣3万本书-详细
- python2.7_批量读取netCDF4文件并输出为
- Python 3网络爬虫开发实战pdf 崔庆才著
- python串口读写
- 基于Python的Vibe目标检测代码
- python首次连接STK
- PSO_TSP_Python
- PythonOCC的安装
-
pyQt5_wavepla
yer python计算声音分贝 语 - The Python Language Reference Manual 无水印
- iris.csv数据集和python代码
- Python爬虫爬取校内论坛标题,并将关
- crowd counting test single image demo
- kNN(python实现)
- ds18x20_onewire.rar
- python生成扭曲带干扰验证码
- 基于OpenCV 3 LBPH 人脸识别 Python代码
- Python标准库源代码.zip
- 信息隐藏——Python语言幻方置乱实现
- train_loss_acc.py
- 可视化函数绘图计算器
- Bayesian Network贝叶斯网络 Python Program
- Python WSQ行情订阅演示案例.rar
- python网络爬虫爬取Boss直聘代码
- generate_train_val_test_txt.py
- 在python环境下成功实现视频分帧,并
- 传染病SEIR传播动力模型python代码
- 船舶AIS数据轨迹可视化python代码.py
- python背单词小程序
- 深度信念网络分类算法python程序.doc
评论
共有 条评论