Guest User

Untitled

a guest
Jul 16th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. def __init__(self, master):
  2. tk.Frame.__init__(self, master)
  3. self.pack()
  4.  
  5. self.button_bonus = ttk.Button(self, text="Bonuses", command=popup)
  6. self.button_bonus.pack()
  7.  
  8. self.button_showinfo = ttk.Button(self, text="Show Info", command=popup_showinfo)
  9. self.button_showinfo.pack()`
Add Comment
Please, Sign In to add comment