上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 36 下一页
摘要: 转载:https://blog.csdn.net/hepu8/article/details/89115187 用Tkinter打造GUI开发工具(10)Tkinter的Frame框架部件Frame框架部件是Tkinter的容器部件,负责安排其它部件的位置,Frame组件采用在屏幕上的矩形区域组织布 阅读全文
posted @ 2021-09-22 18:05 linbo.yang 阅读(507) 评论(0) 推荐(0) 编辑
摘要: 转载:https://blog.csdn.net/hepu8/article/details/88833912 1 # -*- coding: utf-8 -*- 2 import tkinter as tk #装载tkinter模块,用于Python3 3 import tkinter.font 阅读全文
posted @ 2021-09-22 17:18 linbo.yang 阅读(790) 评论(0) 推荐(0) 编辑
摘要: 本文转载: https://blog.csdn.net/hepu8/article/details/88630979 用Tkinter打造GUI开发工具(6)小部件颜色Tkinter小部件的常用属性是颜色属性,activebackground、activeforeground、background、 阅读全文
posted @ 2021-09-22 16:49 linbo.yang 阅读(130) 评论(0) 推荐(0) 编辑
摘要: ttk.Frame() code: import tkinter as tkfrom tkinter import ttk window = tk.Tk() RELIEF = ["flat", "raised", "sunken", "solid", "ridge", "groove"] windo 阅读全文
posted @ 2021-09-21 22:37 linbo.yang 阅读(163) 评论(0) 推荐(0) 编辑
摘要: Welcome to TinyDB! — TinyDB 4.5.1 documentation tinydb:Welcome to TinyDB! — TinyDB 4.5.1 documentation from tinydb import TinyDB, Query db = TinyDB(r' 阅读全文
posted @ 2021-09-21 21:00 linbo.yang 阅读(81) 评论(0) 推荐(0) 编辑
摘要: grid 学习: (23条消息) tkinter-grid布局详解_渔道的博客-CSDN博客_tkinter (23条消息) Python GUI之tkinter窗口视窗教程大集合(看这篇就够了)_weixin_33739541的博客-CSDN博客 阅读全文
posted @ 2021-09-20 10:55 linbo.yang 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 1 import time 2 import tkinter as tk 3 4 class Clock(tk.Tk): 5 def __init__(self): 6 super().__init__() 7 self.title("") 8 self.time_text="" 9 self.lb 阅读全文
posted @ 2021-09-19 22:05 linbo.yang 阅读(101) 评论(0) 推荐(0) 编辑
摘要: import tkinter as tk import tkinter as ttk from tkinter import messagebox class BIMView(tk.Frame): def __init__(self, parent, *args, **kwargs): super( 阅读全文
posted @ 2021-09-19 22:03 linbo.yang 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 转载:Python f-string - formatting strings in Python with f-string (zetcode.com) http://zetcode.com/python Python f-string Python f-string is the newest 阅读全文
posted @ 2021-09-18 23:10 linbo.yang 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 需求部分:(21条消息) Python——银行管理系统_LiFaSu的博客-CSDN博客_python银行管理系统 转载于:Python学习笔记-练习编写ATM+购物车(购物商城) - 乀崋 - 博客园 (cnblogs.com) 生成银行卡号:(21条消息) Python-银行卡号生成(符合校验规 阅读全文
posted @ 2021-09-12 23:06 linbo.yang 阅读(153) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 36 下一页