#๐ Tkinter resizing problem
13 messages ยท Page 1 of 1 (latest)
@queen island
Remember to:
- Ask your Python question, not if you can ask or if there's an expert who can help.
- Show a code sample as text (rather than a screenshot) and the error message, if you've got one.
- Explain what you expect to happen and what actually happens.
:warning: Do not pip install anything that isn't related to your question, especially if asked to over DMs.
Mainframe = tk.Frame(root, highlightbackground='grey', highlightthickness=2)
Mainframe.configure(height = 700, width = 1125,)
Mainframe.place(relx = 0.255, rely = 0.085)
Is there a way to make a frame not change it's size using .place()
is there anything similar to propogate false but for place
I do recommend to use grid for widget geometry.
Also if you use frame, try to not use propagation or whatsoever as frame widget does is to group widgets.
So my propose solution is if you want to adjust the sizing, adjust the sizing of the widgets inside the frame not the frame itself.
I can adjust the widgets inside the frame for the first time
but if i switch to another frame and switch it back
it goes over
It fits but then it doesnt fit
This help channel has been closed and it's no longer possible to send messages here. If your question wasn't answered, feel free to create a new post in #1035199133436354600. To maximize your chances of getting a response, check out this guide on asking good questions.