Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. from Tkinter import *
  2. import Tkinter as Tk
  3. import ttk
  4.  
  5. class Test(Tk.Tk):
  6. def __init__(self, *args, **kwargs):
  7. Tk.Tk.__init__(self, *args, **kwargs)
  8.  
  9. app = Test()
  10. app.state("zoomed")
  11. app.mainloop()
  12. # I'm having problems with this could I get any help?
  13. root.mainloop()
  14. root.wm_iconbitmap('xxxxxxx.ico')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement