Python Forum
listbox ipadx, ipady not working
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
listbox ipadx, ipady not working
#5
Hi woooee

Quote:What does this mean? You don't have anything in the Listbox in the code posted above. Stop guessing and start testing.

I think you didn't test your script visually either. Because even with listcontains the ipadx and ipady aren't active!

Maybe this could be a work around:
import tkinter as tk
 
class MyApp(tk.Frame):
    def __init__(self, parent, **kwargs):
        self.parent = parent
        tk.Frame.__init__(self, parent, **kwargs)
        
        list_item_values = ["one", "two", "three", "four", "five"]
        
        lb = tk.Listbox(self, width=30, height=20, bd=0, highlightthickness=0)
        lb.grid(row=0, column=0, padx=5, pady=5)
        lb.insert('end', *list_item_values)
        
if __name__ == "__main__":
    root = tk.Tk()
    MyApp(root, relief='sunken', bd=1, bg='white').pack(padx=5, pady=5)
    root.mainloop()
Greetings wuf
Reply


Messages In This Thread
listbox ipadx, ipady not working - by maxtimbo - Feb-19-2019, 11:37 PM
RE: listbox ipadx, ipady not working - by woooee - Feb-19-2019, 11:55 PM
RE: listbox ipadx, ipady not working - by maxtimbo - Feb-20-2019, 09:44 PM
RE: listbox ipadx, ipady not working - by woooee - Feb-20-2019, 09:51 PM
RE: listbox ipadx, ipady not working - by wuf - Feb-22-2019, 07:46 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [PySimpleGUI] update listbox not working zappfinger 2 12,251 Nov-12-2018, 08:33 PM
Last Post: zappfinger

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020