会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
linbbo
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
3
4
5
6
7
8
9
10
11
···
36
下一页
2021年9月24日
tkinter login
摘要: 1 import tkinter as tk 2 from tkinter import ttk 3 def login(root): 4 login_frame = tk.Frame(root) 5 login_frame.grid(padx=15, pady=15) 6 ttk.Label(lo
阅读全文
posted @ 2021-09-24 10:02 linbo.yang
阅读(164)
评论(0)
推荐(0)
2021年9月22日
ttk.Notebook
摘要: 转载:https://blog.csdn.net/hepu8/article/details/90345072 1 # -*- coding: utf-8 -*- 2 import tkinter as tk #装载tkinter模块,用于Python3 3 from tkinter import
阅读全文
posted @ 2021-09-22 18:33 linbo.yang
阅读(340)
评论(0)
推荐(0)
tkinter tk.grid
摘要: 转载:https://blog.csdn.net/hepu8/article/details/89417831 用Tkinter打造GUI开发工具(12)Tkinter小部件的grid布局部件的网格放置grid()方法是使用行列位置的方法放置部件。 grid()方法布局管理器会将控件放置到一个二维的
阅读全文
posted @ 2021-09-22 18:19 linbo.yang
阅读(428)
评论(0)
推荐(0)
tkinter tk.Frame
摘要: 转载:https://blog.csdn.net/hepu8/article/details/89115187 用Tkinter打造GUI开发工具(10)Tkinter的Frame框架部件Frame框架部件是Tkinter的容器部件,负责安排其它部件的位置,Frame组件采用在屏幕上的矩形区域组织布
阅读全文
posted @ 2021-09-22 18:05 linbo.yang
阅读(596)
评论(0)
推荐(0)
Tkinter 字体类型
摘要: 转载: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
阅读(846)
评论(0)
推荐(0)
Tkcolor
摘要: 本文转载: https://blog.csdn.net/hepu8/article/details/88630979 用Tkinter打造GUI开发工具(6)小部件颜色Tkinter小部件的常用属性是颜色属性,activebackground、activeforeground、background、
阅读全文
posted @ 2021-09-22 16:49 linbo.yang
阅读(204)
评论(0)
推荐(0)
2021年9月21日
tkinter ttk.Frame
摘要: 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
阅读(262)
评论(0)
推荐(0)
TindyDB
摘要: 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
阅读(97)
评论(0)
推荐(0)
2021年9月20日
tkinter grid
摘要: grid 学习: (23条消息) tkinter-grid布局详解_渔道的博客-CSDN博客_tkinter (23条消息) Python GUI之tkinter窗口视窗教程大集合(看这篇就够了)_weixin_33739541的博客-CSDN博客
阅读全文
posted @ 2021-09-20 10:55 linbo.yang
阅读(82)
评论(0)
推荐(0)
2021年9月19日
tkinter clock 数字时钟
摘要: 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
阅读(134)
评论(0)
推荐(0)
上一页
1
···
3
4
5
6
7
8
9
10
11
···
36
下一页
公告