Python / Tk, can you reorder the children of a widget?2019 Community Moderator ElectionCalling an external command in PythonWhat are metaclasses in Python?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow can I safely create a nested directory in Python?Does Python have a ternary conditional operator?How to get the current time in PythonHow can I make a time delay in Python?How can you profile a Python script?Does Python have a string 'contains' substring method?
When should a starting writer get his own webpage?
Why didn’t Eve recognize the little cockroach as a living organism?
How to balance a monster modification (zombie)?
What is 露わになる affecting in the following sentence, '才能の持ち主' (持ち主 to be specific) or '才能'?
Have the tides ever turned twice on any open problem?
Does fire aspect on a sword, destroy mob drops?
How can an organ that provides biological immortality be unable to regenerate?
pipe commands inside find -exec?
Unfrosted light bulb
Norwegian Refugee travel document
Interior of Set Notation
Turning a hard to access nut?
Fair way to split coins
TDE Master Key Rotation
If I cast the Enlarge/Reduce spell on an arrow, what weapon could it count as?
How to find the largest number(s) in a list of elements, possibly non-unique?
How old is Nick Fury?
CLI: Get information Ubuntu releases
Should I be concerned about student access to a test bank?
Isn't the word "experience" wrongly used in this context?
Writing in a Christian voice
Should a narrator ever describe things based on a characters view instead of fact?
What is the difference between something being completely legal and being completely decriminalized?
label a part of commutative diagram
Python / Tk, can you reorder the children of a widget?
2019 Community Moderator ElectionCalling an external command in PythonWhat are metaclasses in Python?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow can I safely create a nested directory in Python?Does Python have a ternary conditional operator?How to get the current time in PythonHow can I make a time delay in Python?How can you profile a Python script?Does Python have a string 'contains' substring method?
I have a bunch of widgets packed into a frame, and then I am dynamically creating more widgets when a button is pressed. These then get packed-left and end up next to the existing widgets.
I would rather pack these widgets in the middle of the existing widgets in this frame (they're all on one line). Is there a way to do this by re-orderering them as children of the frame in which they have been packed?
Would rather not use grid here instead of pack. I can get a list of them as children of their frame, and would rather keep using .winfo_children() to manipulate them rather than adding them to some other list and using that. Basically I want to take button3, button4, and button5, and move them up the stacking order so they appear between label14 and label15.
Do I have to pack_forget() all the widgets after label14 before I create these three buttons, pack those three buttons, then re-pack the rest? Or can I re-order the children stack somehow?
Thank you!!
.!window.!frame.!label
.!window.!frame.!optionmenu
.!window.!frame.!button
.!window.!frame.!label2
.!window.!frame.!label3
.!window.!frame.!label4
.!window.!frame.!label5
.!window.!frame.!button2
.!window.!frame.!label6
.!window.!frame.!button3
.!window.!frame.!button4
.!window.!frame.!button5
[<tkinter.Frame object .!window.!frame>, <tkinter.Frame object .!window.!frame2>, <tkinter.Frame object .!window.!frame3>]
for i in range(0, self.site_column_count):
start = (i * column_break)
end = (i + 1) * column_break
this = self.site_list[start:end]
header = str(self.site_list[start]) + "-" + str(self.site_list[end - 1])
self.receiver.set(" Sites ")
# option menu column 1
new_dropdown = "self.site_picker_" + str(i)
new_dropdown = tk.OptionMenu(main_GUI.windows[0].window_nav_frame, self.receiver, *this, command = lambda _: self.show_site_info())
new_dropdown.pack(side = tk.LEFT, fill = tk.Y)
new_dropdown.configure(highlightthickness = 0)
format_item(new_dropdown, **themes[1])
print(main_GUI.windows[0].winfo_children())
python tk
add a comment |
I have a bunch of widgets packed into a frame, and then I am dynamically creating more widgets when a button is pressed. These then get packed-left and end up next to the existing widgets.
I would rather pack these widgets in the middle of the existing widgets in this frame (they're all on one line). Is there a way to do this by re-orderering them as children of the frame in which they have been packed?
Would rather not use grid here instead of pack. I can get a list of them as children of their frame, and would rather keep using .winfo_children() to manipulate them rather than adding them to some other list and using that. Basically I want to take button3, button4, and button5, and move them up the stacking order so they appear between label14 and label15.
Do I have to pack_forget() all the widgets after label14 before I create these three buttons, pack those three buttons, then re-pack the rest? Or can I re-order the children stack somehow?
Thank you!!
.!window.!frame.!label
.!window.!frame.!optionmenu
.!window.!frame.!button
.!window.!frame.!label2
.!window.!frame.!label3
.!window.!frame.!label4
.!window.!frame.!label5
.!window.!frame.!button2
.!window.!frame.!label6
.!window.!frame.!button3
.!window.!frame.!button4
.!window.!frame.!button5
[<tkinter.Frame object .!window.!frame>, <tkinter.Frame object .!window.!frame2>, <tkinter.Frame object .!window.!frame3>]
for i in range(0, self.site_column_count):
start = (i * column_break)
end = (i + 1) * column_break
this = self.site_list[start:end]
header = str(self.site_list[start]) + "-" + str(self.site_list[end - 1])
self.receiver.set(" Sites ")
# option menu column 1
new_dropdown = "self.site_picker_" + str(i)
new_dropdown = tk.OptionMenu(main_GUI.windows[0].window_nav_frame, self.receiver, *this, command = lambda _: self.show_site_info())
new_dropdown.pack(side = tk.LEFT, fill = tk.Y)
new_dropdown.configure(highlightthickness = 0)
format_item(new_dropdown, **themes[1])
print(main_GUI.windows[0].winfo_children())
python tk
"Do I have to pack_forget() all the widgets ... then re-pack the rest?" Yes.
– stovfl
Mar 7 at 19:03
add a comment |
I have a bunch of widgets packed into a frame, and then I am dynamically creating more widgets when a button is pressed. These then get packed-left and end up next to the existing widgets.
I would rather pack these widgets in the middle of the existing widgets in this frame (they're all on one line). Is there a way to do this by re-orderering them as children of the frame in which they have been packed?
Would rather not use grid here instead of pack. I can get a list of them as children of their frame, and would rather keep using .winfo_children() to manipulate them rather than adding them to some other list and using that. Basically I want to take button3, button4, and button5, and move them up the stacking order so they appear between label14 and label15.
Do I have to pack_forget() all the widgets after label14 before I create these three buttons, pack those three buttons, then re-pack the rest? Or can I re-order the children stack somehow?
Thank you!!
.!window.!frame.!label
.!window.!frame.!optionmenu
.!window.!frame.!button
.!window.!frame.!label2
.!window.!frame.!label3
.!window.!frame.!label4
.!window.!frame.!label5
.!window.!frame.!button2
.!window.!frame.!label6
.!window.!frame.!button3
.!window.!frame.!button4
.!window.!frame.!button5
[<tkinter.Frame object .!window.!frame>, <tkinter.Frame object .!window.!frame2>, <tkinter.Frame object .!window.!frame3>]
for i in range(0, self.site_column_count):
start = (i * column_break)
end = (i + 1) * column_break
this = self.site_list[start:end]
header = str(self.site_list[start]) + "-" + str(self.site_list[end - 1])
self.receiver.set(" Sites ")
# option menu column 1
new_dropdown = "self.site_picker_" + str(i)
new_dropdown = tk.OptionMenu(main_GUI.windows[0].window_nav_frame, self.receiver, *this, command = lambda _: self.show_site_info())
new_dropdown.pack(side = tk.LEFT, fill = tk.Y)
new_dropdown.configure(highlightthickness = 0)
format_item(new_dropdown, **themes[1])
print(main_GUI.windows[0].winfo_children())
python tk
I have a bunch of widgets packed into a frame, and then I am dynamically creating more widgets when a button is pressed. These then get packed-left and end up next to the existing widgets.
I would rather pack these widgets in the middle of the existing widgets in this frame (they're all on one line). Is there a way to do this by re-orderering them as children of the frame in which they have been packed?
Would rather not use grid here instead of pack. I can get a list of them as children of their frame, and would rather keep using .winfo_children() to manipulate them rather than adding them to some other list and using that. Basically I want to take button3, button4, and button5, and move them up the stacking order so they appear between label14 and label15.
Do I have to pack_forget() all the widgets after label14 before I create these three buttons, pack those three buttons, then re-pack the rest? Or can I re-order the children stack somehow?
Thank you!!
.!window.!frame.!label
.!window.!frame.!optionmenu
.!window.!frame.!button
.!window.!frame.!label2
.!window.!frame.!label3
.!window.!frame.!label4
.!window.!frame.!label5
.!window.!frame.!button2
.!window.!frame.!label6
.!window.!frame.!button3
.!window.!frame.!button4
.!window.!frame.!button5
[<tkinter.Frame object .!window.!frame>, <tkinter.Frame object .!window.!frame2>, <tkinter.Frame object .!window.!frame3>]
for i in range(0, self.site_column_count):
start = (i * column_break)
end = (i + 1) * column_break
this = self.site_list[start:end]
header = str(self.site_list[start]) + "-" + str(self.site_list[end - 1])
self.receiver.set(" Sites ")
# option menu column 1
new_dropdown = "self.site_picker_" + str(i)
new_dropdown = tk.OptionMenu(main_GUI.windows[0].window_nav_frame, self.receiver, *this, command = lambda _: self.show_site_info())
new_dropdown.pack(side = tk.LEFT, fill = tk.Y)
new_dropdown.configure(highlightthickness = 0)
format_item(new_dropdown, **themes[1])
print(main_GUI.windows[0].winfo_children())
python tk
python tk
asked Mar 7 at 18:45
KorzakKorzak
108210
108210
"Do I have to pack_forget() all the widgets ... then re-pack the rest?" Yes.
– stovfl
Mar 7 at 19:03
add a comment |
"Do I have to pack_forget() all the widgets ... then re-pack the rest?" Yes.
– stovfl
Mar 7 at 19:03
"Do I have to pack_forget() all the widgets ... then re-pack the rest?" Yes.
– stovfl
Mar 7 at 19:03
"Do I have to pack_forget() all the widgets ... then re-pack the rest?" Yes.
– stovfl
Mar 7 at 19:03
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55050798%2fpython-tk-can-you-reorder-the-children-of-a-widget%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55050798%2fpython-tk-can-you-reorder-the-children-of-a-widget%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
"Do I have to pack_forget() all the widgets ... then re-pack the rest?" Yes.
– stovfl
Mar 7 at 19:03