Esempio n. 1
0
def main():
  root = Tk()
  root.title("Money Timer")
  root.lift()
  cf = ClockFace(root, size = 100, smooth = True, bg = PhotoImage(file = "art.gif"), handcolor = "#000000", markcolor = "#000000")
  cf.grid(row = 0, column = 0)
  mt = MoneyTimer(root)
  mt.grid(row = 0, column = 1)
  cal = Calendar(root)
  cal.grid(row = 1, column = 0, columnspan = 2)

  root.mainloop()