Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created September 25, 2020 08:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/3e284b4df5048bc4a0a1a387eb30f79e to your computer and use it in GitHub Desktop.
Save amankharwal/3e284b4df5048bc4a0a1a387eb30f79e to your computer and use it in GitHub Desktop.
import tkinter as tk
window = tk.Tk()
window.title("Thecleverprogrammer")
window.rowconfigure(0, minsize=800, weight=1)
window.columnconfigure(1, minsize=800, weight=1)
txt_edit = tk.Text(window)
fr_buttons = tk.Frame(window)
btn_open = tk.Button(fr_buttons, text='Open')
btn_save = tk.Button(fr_buttons, text="Save As")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment