Using Custom Tkinter python I have put a label inside of a frame that is inside of a TopLevel Window. The frame can be inside of said window but when I try the label inside of the frame, the label appears on the main window.
def OpenMessageScreen(client):
#exec(client + " = tk.CTkToplevel(window) ")
evrenacar = tk.CTkToplevel(window)
#exec(client + "Frame123 = tk.CTkFrame(master =" +client +",width=300).pack()")
evrenacarFrame123 = tk.CTkFrame(master = evrenacar,width=300).pack()
exec(client + "Label = tk.CTkLabel(master=" + client + "Frame123,text = \'test\').pack()")
evrenacarLabel = tk.CTkLabel(master=evrenacar.frame("evrenacarFrame123"),text="merhana")
evrenacarLabel.pack()
MessageTestButton = tk.CTkButton(master=MessageFrame,command=lambda: OpenMessageScreen("evrenacar")).pack()
MessageFrame
is just a frame on the Main Window, and evrenacar
is the client name (just a variable name not important).
And if you are wondering about the commentary sections and replaced variable versions with the same code on the function. That's just a test to make sure exec()
is not the cause of this problem. (it is not)
I have created a Toplevel
window that activates using a button. When the button is pressed, it has a command that names the top level window as the lamba
function below, that using that variable client, it can produce more then one windows(the exec function that creates more then one window isn't the problem). The window works fine, and I have put a frame inside of it. But when I try putting a label inside of said frame, the label appears on the main window. Can you help me solve this bug.
Consider this line of code:
If you examine
evrenacarFrame123
you would see that it'sNone
. When you useNone
(or a variable set toNone
) as the master of a widget, that widget will appear in the root window.Why is
evrenacarFrame123
set toNone
? In python,foo = x().y()
always setsfoo
to the return value of.y()
. In tkinter,pack()
always returnsNone
, soSomeWidget(...).pack()
will always returnNone
.The solution is to separate the creation of the widget from the layout.
If you want to prevent creating a widget in the root window in case of specification of
None
as a master of the widget, you can call the functionNoDefaultRoot()
in thetkinter
module to turn this default behavior off.After calling
NoDefaultRoot()
you will get the error messageRuntimeError: No master specified and tkinter is configured to not support default root
if you have passedNone
as a master widget when creating a new widget.