Python Forum
[Tkinter] Aligning Python Tkinter Buttons In Rows
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] Aligning Python Tkinter Buttons In Rows
#3
This doesn't answer your question, but seeing the path you've taken so far makes me want to help with something else. When you see large chunks of code that are identical in *almost* every way, you can normally write a single function that handles both cases. In this instance, one function instead of 28:
from tkinter import *

result = []

def add_to_result(value):
    result.append(value)

def clear_results():
    result = []

def handler(value):
    return lambda: add_to_results(value)

root = Tk()

characters = 'abcdefghijklmnopqrstuvwxyz'
for char in characters:
    btn = Button(root, command=handler(char))
    photo = PhotoImage(file="Symbols/{0}.png".format(char))
    btn.config(image=photo)
    btn.pack()
Reply


Messages In This Thread
RE: Aligning Python Tkinter Buttons In Rows - by nilamo - Feb-20-2018, 08:00 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [Tkinter] Different rows colours in treeview tkinter Krissstian 1 1,342 Nov-20-2022, 09:59 PM
Last Post: woooee
  tkinter toggle buttons not working Nu2Python 26 7,290 Jan-23-2022, 06:49 PM
Last Post: Nu2Python
  Column headers not aligning properly with table kenwatts275 3 3,564 Jul-13-2020, 12:53 AM
Last Post: menator01
  TkInter Binding Buttons ifigazsi 5 4,622 Apr-06-2020, 08:30 AM
Last Post: ifigazsi
  Issue on tkinter with buttons Reldaing 1 2,480 Jan-07-2020, 08:21 AM
Last Post: berckut72
  Need tkinter help with clicking buttons pythonprogrammer 2 2,508 Jan-03-2020, 04:43 AM
Last Post: joe_momma
  Tkinter Buttons action d3fi 1 2,037 Nov-20-2019, 09:16 PM
Last Post: Larz60+
  Nesting menu buttons tkinter for python Mocap 1 2,766 Jul-18-2019, 11:46 AM
Last Post: metulburr
  Windows GUI with push buttons to launch python scripts drifterf 7 4,254 Jul-17-2019, 05:34 PM
Last Post: Yoriz
  Multi windows in tkinter buttons not responding correctly curtjohn86 13 11,706 Jul-01-2017, 03:42 PM
Last Post: nilamo

Forum Jump:

User Panel Messages

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