23 lines
707 B
Python
23 lines
707 B
Python
import tkinter as tk
|
|
class App(tk.Tk):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
self.configure(bg="white")
|
|
self.title("DD-Zeiterfassung")
|
|
self.geometry("1024x768")
|
|
|
|
|
|
|
|
self.anweisungs_label = tk.Label(self, font=('Arial', 12), text="ä = ÄÄÄÄÄÄ ääääääää ÜÜÜÜÜÜÜÜÜ üüüüüüüü ÖÖÖÖÖÖÖÖ öööööö\n")
|
|
self.anweisungs_label2 = tk.Label(self, font=('Arial', 12), bg="white", fg="black")
|
|
|
|
self.anweisungs_label.grid(row=0, column=2, pady=20, padx=10, sticky='ew')
|
|
self.anweisungs_label2.grid(row=1, column=2, pady=20, padx=10, sticky='ew')
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app = App()
|
|
app.mainloop() |