У нас вы можете посмотреть бесплатно Python - GUI mit customtkinter EINSTIEG text label или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Hier der code: import customtkinter as ctk import tkinter as tk #Fenster window = ctk.CTk() window.title("mein GUI") window.geometry("800+600") #Erscheinungsbild "system", "light" oder "dark" ctk.set_appearance_mode("dark") # "light" or "dark or "system" #ctk.set_default_color_theme("green") # Themes: "blue" (standard), "green", "dark-blue" z.B. buttons etc. #Text-Widget label = ctk.CTkLabel(window, text = "welcome", fg_color = "#40E0D0", # tuple → Farbe in light- bzw. dark-mode text_color = ("white", "white"), # tuple → Farbe in light- bzw. dark-mode font=('Times', 80), corner_radius = 11) label.pack(pady=220) #Schleife window.mainloop() ARGUMENTE: master root, tkinter.Frame or CTkFrame textvariable tkinter.StringVar object text string width label width in px height label height in px corner_radius corner radius in px fg_color foreground color, tuple: (light_color, dark_color) or single color or "transparent" text_color label text color, tuple: (light_color, dark_color) or single color font label text font, tuple: ("font_name", size) anchor controls where the text is positioned if the widget has more space than the text needs, default is "center" compound control the postion of image relative to text, default is "center, other are: "top", "bottom", "left", "right" justify specifies how multiple lines of text will be aligned with respect to each other: "left" for flush left, "center" for centered (the default), or "right" for right-justified padx extra space added left and right of the text, default is 1 pady extra space added above and below the text, default is 1