Skip to content

Instantly share code, notes, and snippets.

@fnneves
Created July 18, 2019 17:14
Show Gist options
  • Save fnneves/f6dcc1580a99742ee3202ab8698c55f4 to your computer and use it in GitHub Desktop.
Save fnneves/f6dcc1580a99742ee3202ab8698c55f4 to your computer and use it in GitHub Desktop.
# a proper app needs some buttons too!
button_run = tk.Button(bottom_frame, text="Start", command=run_app, bg='dark green', fg='white', relief='raised', width=10, font=('Helvetica 9 bold'))
button_run.grid(column=0, row=0, sticky='w', padx=100, pady=2)
button_close = tk.Button(bottom_frame, text="Exit", command=close_app, bg='dark red', fg='white', relief='raised', width=10, font=('Helvetica 9'))
button_close.grid(column=1, row=0, sticky='e', padx=100, pady=2)
window.mainloop()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment