Created
July 18, 2019 17:14
-
-
Save fnneves/f6dcc1580a99742ee3202ab8698c55f4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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