I'm generally new to python and tkinter. I've been programming maybe about a year or so, and I've just started to try to make each tkinter toplevel window its own class because I've heard that it's the right way to do it.
I'm making a program in which I have a treeview with a button to add contents to it. The button opens up a new window that allows the user to input the contents. The problem I'm having is when I have to instantiate the first window to update the treeview, it seems like it's doubling all of the widgets on the first window. This causes it to keep building up and it looks strange.
Is this normal or is there a better way to do it?
Thank you. I can post a picture or my code if necessary.
edit: shortened code
from tkinter import *
from tkinter import ttkclass MainWindow:Items = {'test': ['Material', '500']}def __init__(self, master):self.master = masterself.style = ttk.Style()self.style.configure('TLabel', font=12)ttk.Label(self.master, text="Items").grid(row=0, column=0, columnspan=3)self.frmItems = ttk.Frame(self.master)self.frmItems.grid(row=1, column=0, padx=5, pady=5, columnspan=3)self.treeItems = ttk.Treeview(self.frmItems, columns=(0, 1, 2))self.treeItems.column('#0', width=0, minwidth=0)self.treeItems.column(1, width=80)self.treeItems.column(2, width=80)self.treeItems.heading(0, text="Name")self.treeItems.heading(1, text="Type")self.treeItems.heading(2, text="Price")self.treeItems.grid(row=0, column=0)self.itemscroll = ttk.Scrollbar(self.frmItems, command=self.treeItems.yview)self.itemscroll.grid(row=0, column=1, sticky='ns')self.treeItems.config(yscrollcommand=self.itemscroll.set)ttk.Button(self.master, text="New", command=self.item_input_show).grid(row=2, column=0, padx=5, pady=5,sticky='e')ttk.Button(self.master, text="Edit").grid(row=2, column=1, padx=5, pady=5)ttk.Button(self.master, text="Remove").grid(row=2, column=2, padx=5, pady=5, sticky='w')def item_input_show(self):ItemInput(self.master)class ItemInput:def __init__(self, master):self.master = masterself.MainWindow = MainWindow(master)self.topItemInput = Toplevel(self.master)self.topItemInput.title("Input Item Properties")def main():root = Tk()MainWindow(root)root.mainloop()if __name__ == "__main__":main()