mirror of
https://github.com/ApfelTeeSaft/SplitNotes.git
synced 2026-08-26 19:33:39 +00:00
Created methods for loading settings and started working on the gui of the settings menu.
15 lines
203 B
Python
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() |