ashishchib2
Results
1
comments of
ashishchib2
# Creating Left Frame left_frame = CheckboxTreeview(app) y_scrollbar = tk.Scrollbar(left_frame, orient="vertical", command=left_frame.yview) y_scrollbar.pack(side=ctk.RIGHT, fill=ctk.Y) # x_scrollbar = tk.Scrollbar(left_frame, orient="horizontal", command=left_frame.xview) # x_scrollbar.pack(side=ctk.BOTTOM, fill=ctk.X) base_xml_file_path = utils.get_base_xml_path() tree = utils.parse_xml_file(base_xml_file_path) root_element...