Skip to content

Instantly share code, notes, and snippets.

@BMU-Verlag
Created January 23, 2020 13:43
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 BMU-Verlag/6b1851518a0923850f400c4131533861 to your computer and use it in GitHub Desktop.
Save BMU-Verlag/6b1851518a0923850f400c4131533861 to your computer and use it in GitHub Desktop.
message_label = Label(window, text='Message')
message_label.grid(row=2, column=0)
message_input = Entry(window, width=100, state=DISABLED)
message_input.grid(row=2, column=1)
send_button = Button(window, width=20, text='Send', bg='white', command=send, state=DISABLED)
send_button.grid(row=2, column=2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment