资源简介
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-BDD100K大规模多样化驾驶视频数据
- Instant Pygame for Python Game Development How
- Biopython Tutorial
- Think Python 2nd
- 一个小小的表白程序(python)
- Python课堂笔记(高淇400集第一季)
- 二级考试python试题12套(包括选择题和
- pywin32_python3.6_64位
- python+ selenium教程
- PycURL(Windows7/Win32)Python2.7安装包 P
- 英文原版-Scientific Computing with Python
- 7.图像风格迁移 基于深度学习 pyt
- 基于Python的学生管理系统
- A Byte of Python(简明Python教程)(第
- Python实例174946
- Python 人脸识别
- Python 人事管理系统
- 基于python-flask的个人博客系统
- 计算机视觉应用开发流程
- python 调用sftp断点续传文件
- python socket游戏
- 基于Python爬虫爬取天气预报信息
- python函数编程和讲解
- Python开发的个人博客
- 基于python的三层神经网络模型搭建
- python实现自动操作windows应用
- python人脸识别(opencv)
- python 绘图(方形、线条、圆形)
- python疫情卡UN管控
- python 连连看小游戏源码
评论
共有 条评论