I’m new to Tkinter and OOP. I’ve been trying to make child class inherit some methods from parent class because I’d have repeated code if I didn’t do it like that. But I’ve stumbled on a problem, caused probably by my limited knowledge of Tkinter and OOP.
Here is my code: (it’s really simplified, but it is enough to solve problem in complete build):
main.py
JavaScript
x
10
10
1
from app import App
2
import tkinter as tk
3
4
if __name__ == "__main__":
5
root = tk.Tk()
6
root.title("Title")
7
root.minsize(300, 300)
8
App(root).pack(side="top", fill="both", expand=True)
9
root.mainloop()
10
app.py
JavaScript
1
20
20
1
import tkinter as tk
2
from tkinter import ttk
3
from smalerscale.test import FormFill
4
5
6
class App(tk.Frame):
7
8
def __init__(self, parent, *args, **kwargs):
9
10
tk.Frame.__init__(self, parent, *args, **kwargs)
11
self.parent = parent
12
13
# notebook variable
14
self.notebook = ttk.Notebook(self)
15
self.note1 = FormFill(self)
16
17
self.notebook.add(self.note1, text='From')
18
self.notebook.pack()
19
20
form_parent.py
JavaScript
1
17
17
1
import tkinter as tk
2
from tkinter import ttk
3
4
class FormParent(tk.Frame):
5
"""Form frame """
6
7
def __init__(self, parent, *args, **kwargs):
8
tk.Frame.__init__(self, parent, *args, **kwargs)
9
self.parent = parent
10
11
self.main_message = tk.Label(self, text="Some text").pack(fill='x', padx=50, pady=5)
12
13
14
15
def print_something(self):
16
print(self.main_message)
17
test.py
JavaScript
1
13
13
1
import tkinter as tk
2
from tkinter import ttk
3
4
class FormFill(FormParent):
5
6
def __init__(self, parent, *args, **kwargs):
7
tk.Frame.__init__(self, parent, *args, **kwargs)
8
super().__init__(self)
9
10
print("It works maybe!")
11
12
self.print_something()
13
And this is the error I get (something gets printed out, but no window appears):
JavaScript
1
11
11
1
It works maybe!
2
None
3
Traceback (most recent call last):
4
File "C:/Users/kryst/PycharmProjects/covidForm/smalerscale/main.py", line 8, in <module>
5
App(root).pack(side="top", fill="both", expand=True)
6
File "C:UserskrystPycharmProjectscovidFormsmalerscaleapp.py", line 17, in __init__
7
self.notebook.add(self.note1, text='Formulář')
8
File "C:UserskrystAnaconda3libtkinterttk.py", line 844, in add
9
self.tk.call(self._w, "add", child, *(_format_optdict(kw)))
10
_tkinter.TclError: can't add .!app.!formfill.!formfill as slave of .!app.!notebook
11
I’m pretty sure I messed up the __init__
and some attributes, but I can’t find a way to make it right and working.
I’d be really grateful for any help.
Advertisement
Answer
Working answer by @JacksonPro
JavaScript
1
2
1
tk.Frame.__init__(self, parent, *args, **kwargs) super().__init__(self) in FormFill class -> super().__init__(parent, *args, **kwargs)
2