文章分类 - Tkinter
python 内置UI库
证件类型规则大全
摘要:身份证号码规则 身份证号码是由18位数字组成的,它的编码规则依据国家标准《GB11643》,它们分别表示: (1)前1、2位数字表示:所在省份的代码; (2)第3、4位数字表示:所在城市的代码; (3)第5、6位数字表示:所在区县市(县级市)的代码; (4)第7~14位数字表示:出生年、月、日;7.
阅读全文
各种类型证件生成器
摘要:源码见:https://github.com/singebogo/IdTypes.git 效果图 个人: 身份证 护照 军人证 台胞证 港澳通信证 团体: 统一社会信用代码,组织机构代码,纳税人识别号,工商注册号,税务登记号
阅读全文
符合车架号规则生成器
摘要:界面生成 import ttkbootstrap as ttk from vehicleIdentificationNumber import vin_numbers, get_normal_vin, check_vin class Vin9Frame(ttk.Frame): def __init_
阅读全文
pdf转换器-预览PDF和图片源代码
摘要:class PDFMiner: def __init__(self, filepath): # creating the file path self.filepath = filepath # opening the pdf document self.pdf = fitz.open(self.f
阅读全文
pdf转换器-主要转换功能按钮源代码
摘要:#!/usr/bin/python # -*- coding: UTF-8 -*- # python2 使用 Tkinter from tkinter.ttk import Combobox import math import os from tkinter import * import shu
阅读全文
python转换器
摘要:添加需要操作的文件 选择需要保存的目录 双击查看pdf和 图片 链接: https://pan.baidu.com/s/1wKPQ1EbsdLi--wzo2gxAsA 提取码: w7jz
阅读全文
tkinter窗体支持系统热键
摘要:1、实现思路 1、tkinter窗体使用守护线程(HotKeyThread)进行热键注册和管理 2、守护线程(HotKeyThread)需要实现 1、线程本身可控制 2、热键注册和卸载 3、热键事件监听 和对应事件相应 2、实现可停止线程(StoppableThread) stopped_able_
阅读全文
Tkinter CheckBox实现单选和多选
摘要:单选: self.light_list = ["1000Lux_SME_D65_EV_0", "1000Lux_SME_D65_EV_10", "1000Lux_SME_D65_EV_20", "100Lux_SME_A_EV_0", "20Lux_SME_A_EV_0", "5Lux_SME_A_
阅读全文