Files
SplitNotes/TESTING.py
T
Joelnir c3e7c275f7 Start of setting implementation
Created methods for loading settings and started working on the gui of
the settings menu.
2016-02-17 22:43:09 +01:00

15 lines
203 B
Python

import tkinter
import setting_handler as s
#s.load_settings()
root = tkinter.Tk();
top = tkinter.Toplevel()
e = tkinter.Entry(top)
e.pack()
top.title("About this application...")
tkinter.mainloop()