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?










0















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())









share|improve this question






















  • "Do I have to pack_forget() all the widgets ... then re-pack the rest?" Yes.

    – stovfl
    Mar 7 at 19:03















0















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())









share|improve this question






















  • "Do I have to pack_forget() all the widgets ... then re-pack the rest?" Yes.

    – stovfl
    Mar 7 at 19:03













0












0








0








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())









share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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

















  • "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












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
);



);













draft saved

draft discarded


















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















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived