随笔分类 - tkinter
Python 的标准 Tk GUI 工具包的接口 .Tk 和 Tkinter 可以在大多数的 Unix 平台下使用,同样可以应用在 Windows 和 Macintosh 系统里。Tk8.0 的后续版本可以实现本地窗口风格,并良好地运行在绝大多数平台中。
摘要:1 # -*- coding: UTF-8 -*- 2 from tkinter import * 3 4 class MainPages: 5 def __init__(self,master): 6 self.root = master 7 self.root.geometry("600x600
阅读全文
摘要:1 from tkinter import * 2 3 class ChangePage: 4 def __init__(self,root): 5 self.root = root 6 self.root.title('主页面') 7 self.root.geometry('800x800') 8
阅读全文