Some GUI examples in Python using customtkinter import customtkinter import os from PIL import Image class ScrollableCheckBoxFrame(customtkinter.CTkScrollableFrame): def __init__(self, master, item_list, command=None, **kwargs): super().__init__(master, **kwargs) self.command = command self.checkbox_list = [] for i, item in enumerate(item_list): self.add_item(item) def add_item(self, item): checkbox = customtkinter.CTkCheckBox(self, text=item) if self.command is not None: checkbox.configure(command=self.command) checkbox.grid(row=len(self.checkbox_list), column=0, pady=(0, 10)) self.checkbox_list.append(checkbox) def remove_item(self, it...
Blog which contains C#, asp.net, asp.net MVC, Selenium webdriver with core java, Bootstrap, Jquery and many more