mirror of
https://gitlab.vegova.si/rkv/flex-discovery-proxy.git
synced 2025-05-15 16:20:32 +00:00
WIP: GUI
This commit is contained in:
parent
3e0311ba9b
commit
10df2a3c11
20
gui.py
Executable file
20
gui.py
Executable file
@ -0,0 +1,20 @@
|
||||
#!/usr/bin/python3
|
||||
|
||||
import tkinter as tk
|
||||
from tkinter import ttk
|
||||
|
||||
# window
|
||||
window = tk.Tk()
|
||||
window.title("POFLEXAJ")
|
||||
window.geometry("300x150")
|
||||
|
||||
# title
|
||||
title_label = ttk.Label(master = window, text = "Poflexaj GUI", font = "Monospace 24")
|
||||
title_label.pack()
|
||||
|
||||
seznam = tk.Listbox(master = window, selectmode=tk.SINGLE)
|
||||
seznam.pack()
|
||||
|
||||
|
||||
#run
|
||||
window.mainloop()
|
Loading…
x
Reference in New Issue
Block a user