We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Doesn't work with .destroy()
The text was updated successfully, but these errors were encountered:
@CR0naldo7 Provide an example. Make sure you are using the latest version of ctklistbox, because I am not facing this issue.
import customtkinter from CTkListbox import * def show_value(selected_option): print(selected_option) root = customtkinter.CTk() listbox = CTkListbox(root, command=show_value) listbox.pack(fill="both", expand=True, padx=10, pady=10) listbox.insert(0, "Option 0") listbox.insert(1, "Option 1") listbox.insert(2, "Option 2") listbox.insert(3, "Option 3") # destroy the listbox listbox.destroy() root.mainloop()
Sorry, something went wrong.
No branches or pull requests
Doesn't work with .destroy()
The text was updated successfully, but these errors were encountered: