mirror of
https://gitlab.vegova.si/rkv/flex-discovery-proxy.git
synced 2025-05-15 16:20:32 +00:00
20 lines
357 B
Python
Executable File
20 lines
357 B
Python
Executable File
#!/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() |