Forum >> Principianti >> CTkEntry e ciclo for

Pagina: Indietro 1 2

import customtkinter as ctk

ctk.set_appearance_mode('dark')
ctk.set_default_color_theme('blue')

app = ctk.CTk()
app.geometry('500x240')

Gen_font = "Helvetica"
Gen_size = 15
Pos_x=10
Pos_y=20

tl_list = \[]
def salva():
    global Val_T
    r = tl_list[0].get()
    r1 = tl_list[1].get()
    r2 = tl_list[2].get()
    r3 = tl_list[3].get()
    r4 = tl_list[4].get()
    

    for n in range(5):
        riga = n * 30
    
        Tl1 = ctk.CTkLabel(master=app, 
                        width=50,
                        height=25,
                        text=tl_list[0].get(),
                        font=(Gen_font,Gen_size))
        Tl1.place(x = Pos_x +100  , y = Pos_y+ riga)
    

for n in range(5):
    riga = n * 30
    
    Tl = ctk.CTkLabel(master=app, 
                        width=50,
                        height=25,
                        text="T"+str(n + 1),
                        font=(Gen_font,Gen_size))
    Tl.place(x = Pos_x  , y = Pos_y+ riga)

for n in range(5):
    riga = n * 30

    T1 = ctk.CTkEntry(master=app,
                        placeholder_text="°C",
                        width=50,
                        height=25,
                        corner_radius=10,
                        fg_color=("blue"),
                        justify='center')
    T1.place(x = Pos_x + 50  , y = Pos_y + riga)
    tl_list.append(T1)


VFin0 = ctk.CTkButton (app, text="salva", command = salva)
VFin0.place(x = 10 , y=200)

app.mainloop()
si funziona anche se
tl_list = \[]





in realtà non ha "\"











Pagina: Indietro 1 2



Esegui il login per scrivere una risposta.