so recently i was creating a app that you can add cehckboxes and they were your works to do (to do list app) so i wanted to manage the check boxes that added and because they doesnt have any name i couldn’t manage them like saving theyr data or deleting them:
from customtkinter import *
app = CTk()
def add():
CTkCheckBox(app, text=entry.get()).pack()entry = CTkEntry(app, placeholder_text=”Enter a name:”) entry.pack()
add_button = CTkButton(app, text=”Add”, command=add) add_button.pack()
app.mainloop()
something like this
(and i had a simple question that how can i set the checkboxes in checked mode)