Python Forum
[Tkinter] Text Button - How Do I Reduce The Margin?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] Text Button - How Do I Reduce The Margin?
#4
If you used themed tk buttons (ttk.Button) you can set padding. You can also set width if the the top/bottom margins look good but the button is too wide.
import tkinter as tk
import tkinter.ttk as ttk

root = tk.Tk()

ttk.Button(root, text='Text').grid(row=0, column=0)
ttk.Button(root, text='Text', padding=5).grid(row=1, column=0)
ttk.Button(root, text='Text', padding=-5).grid(row=2, column=0)
ttk.Button(root, text='Text', width=4).grid(row=3, column=0)

tk.mainloop()
Reply


Messages In This Thread
RE: Text Button - How Do I Reduce The Margin? - by deanhystad - Apr-25-2020, 12:57 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Button to +1 in text box everytime it's clicked martyloo 1 541 May-01-2024, 02:32 PM
Last Post: Axel_Erfurt
  Can't change the colour of Tk button text Pilover 6 15,318 Nov-15-2022, 10:11 PM
Last Post: woooee
  [Tkinter] Make my button text update? Skata100 1 2,131 Aug-07-2021, 05:37 AM
Last Post: deanhystad
  Tkinter reduce OptionMenu height euras 2 4,846 May-25-2021, 09:14 PM
Last Post: euras
  Updating button text based upon different variable values knoxvilles_joker 0 2,326 Apr-18-2021, 04:13 AM
Last Post: knoxvilles_joker
  tkinter | Button color text on Click Maryan 2 3,510 Oct-09-2020, 08:56 PM
Last Post: Maryan
  How to make button text bold in Tkinter? scratchmyhead 2 12,407 May-16-2020, 02:53 AM
Last Post: scratchmyhead
  [PySimpleGui] How to alter mouse click button of a standard submit button? skyerosebud 3 5,138 Jul-21-2019, 06:02 PM
Last Post: FullOfHelp
  Text after push button chano 13 5,656 Jul-05-2019, 03:10 PM
Last Post: Yoriz
  [Tkinter] how do i add a margin to a Listbox DT2000 27 18,567 May-14-2019, 04:07 AM
Last Post: DT2000

Forum Jump:

User Panel Messages

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