×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: Python
Posted by: Jean-Pierre Hermans
Added: May 23, 2021 8:26 AM
Modified: May 23, 2021 8:43 AM
Views: 3917
Tags: no tags
  1. from tkinter import *
  2.  
  3. gui = Tk(className='Python voorbeeld - venster kleur')
  4. gui.geometry("400x300")
  5. gui.eval('tk::PlaceWindow . center')
  6. gui.resizable(False, False)
  7.  
  8. gui.configure(bg='white')
  9.  
  10. gui.mainloop()
  11.  
Comments disabled