tkinter 类继承的三种方式

简介: tkinter class继承有三种方式。提醒注意这几种继承的运行方式一、继承 object1.铺tk.Frame给parent:说明:self.rootframe = tk.Frame(parent)tk.

tkinter class继承有三种方式。

提醒注意这几种继承的运行方式

一、继承 object

1.铺tk.Frame给parent:

说明:

  • self.rootframe = tk.Frame(parent)
  • tk.Label(self.rootframe)
import tkinter as tk

class MyApp(object):
    def __init__(self, parent):
        self.rootframe = tk.Frame(parent)
        self.rootframe.pack()
        
        self.setupUI()
        
        
    def setupUI(self):
        tk.Label(self.rootframe, text='标签').pack()
        

if __name__ == '__main__':
    root = tk.Tk()
    MyApp(root) # 注意这句
    root.mainloop()

2.直接使用root

说明:

  • self.root = parent
  • tk.Label(self.root)
import tkinter as tk

class MyApp(object):
    def __init__(self, parent, **kwargs):
        self.root = parent
        self.root.config(**kwargs)
        
        self.setupUI()
    
    def setupUI(self):
        tk.Label(self.root, text = '标签').pack()

        
if __name__ == '__main__':
    root = tk.Tk()
    app = test(root)
    root.mainloop()

二、继承 tk.Tk

import tkinter as tk

class MyApp(tk.Tk):
    
    def __init__(self):
        super().__init__()
        
        self.setupUI()

        
    def setupUI(self):
        tk.Label(self, text='标签').pack()
        
        
if __name__ == '__main__':
    MyApp().mainloop()

三、继承 tk.Frame

分两种情况

1.有parent

import tkinter as tk

class MyApp(tk.Frame):
    def __init__(self, parent=None):
        super().__init__(parent)
        self.pack()
        
        self.setupUI()
        
        
    def setupUI(self):
        tk.Label(self, text='标签').pack()
        
        
if __name__ == '__main__':
    MyApp(tk.Tk()).mainloop()
    #MyApp().mainloop() # 也可以这样

注意: self.pack()

2.没有parent

import tkinter as tk

class MyApp(tk.Frame):
    
    def __init__(self):
        super().__init__()
        self.pack()
        
        self.setupUI()

    
    def setupUI(self):
        tk.Label(self, text='标签').pack()
        
        
if __name__ == '__main__': 
    MyApp().mainloop()
目录
相关文章
|
6月前
使用QMovie类来实现在QT中的动态加载效果。
使用QMovie类来实现在QT中的动态加载效果。
254 0
|
7月前
|
C++ 容器
[Qt5] 提升部件类的用法
[Qt5] 提升部件类的用法
109 0
|
算法 Python
【Django学习】(十三)Mixins_各种具体通用类&APIView_ViewSet_GenericViewSet_ModelViewSet类视图继承的父类区别(上)
【Django学习】(十三)Mixins_各种具体通用类&APIView_ViewSet_GenericViewSet_ModelViewSet类视图继承的父类区别
【Django学习】(十三)Mixins_各种具体通用类&APIView_ViewSet_GenericViewSet_ModelViewSet类视图继承的父类区别(下)
【Django学习】(十三)Mixins_各种具体通用类&APIView_ViewSet_GenericViewSet_ModelViewSet类视图继承的父类区别(下)
|
Python
Python教程:类的继承,什么是继承
- 继承是一种新建类的方式,新建的类称为子类,被继承的类称为父类 - 继承的特性是:子类会遗传父类的属性 - 继承是类与类之间的关系
149 0
Python教程:类的继承,什么是继承
|
Python
Python编程:旧式类和新式类的区别
Python编程:旧式类和新式类的区别
84 0
Python编程:旧式类和新式类的区别
backtrader_源码学习_findbases函数用于发现两个类之间有多少继承的类
backtrader_源码学习_findbases函数用于发现两个类之间有多少继承的类
80 0
MFC CFileFind类用法总结
MFC CFileFind类用法总结
431 0
|
机器学习/深度学习 程序员 区块链
Python之tkinter:动态演示调用python库的tkinter带你进入GUI世界(Button的command/Label/PhotoImage/封装为类)
Python之tkinter:动态演示调用python库的tkinter带你进入GUI世界(Button的command/Label/PhotoImage/封装为类)
Python之tkinter:动态演示调用python库的tkinter带你进入GUI世界(Button的command/Label/PhotoImage/封装为类)