Skip to content Skip to sidebar Skip to footer
Showing posts with the label Tk

Python Tkinter: Have Entry Receive Keys While Menu Is Posted?

I want to have an Entry with a dropdown Menu autocomplete... kind of like Chrome's omnibar, for… Read more Python Tkinter: Have Entry Receive Keys While Menu Is Posted?

How Get No Border Effect In Tkinter Ttk?

To get button no border effect in tkinter tk I used to set borderwidth=0. Button will merge into ba… Read more How Get No Border Effect In Tkinter Ttk?

Tkinter: Windows Without Title Bar But Resizable

What I know is if I want to create a window without title bar, I can write root = Tk() ....… Read more Tkinter: Windows Without Title Bar But Resizable

How Can I Get Tk Buttons, Generated By A For Loop, To Pass Input To Their Command? (python)

I have a program which dynamically generates a GUI. I don't know how many buttons I will have,… Read more How Can I Get Tk Buttons, Generated By A For Loop, To Pass Input To Their Command? (python)

How To Add Text To Canvas From A List As Separate Canvas.create_text

I have a list: StoreItems = random.sample(set(['sword','pickaxe','toothpick'… Read more How To Add Text To Canvas From A List As Separate Canvas.create_text

How To Remove Icursor From Tkinter Canvas Text Item?

I'm following along with Effbot's Tkinter page here: http://effbot.org/zone/editing-canvas-… Read more How To Remove Icursor From Tkinter Canvas Text Item?