भाग्य ज्योति

Results 3 issues of भाग्य ज्योति

``` import customtkinter as tk def check_focus(widget): widget.focus_set() root.update() focused_widget = root.focus_get() if focused_widget.winfo_name() == widget.winfo_name(): print(f"The widget is focused.") else: print(f"The widget is not focused.") root = tk.CTk() entry...

The text color not corresponded to text_color. It was governed by button_hover_color

1. Added codes to allow changing value for radiobutton via .configure 2. Added codes to define font for the buttons used in tabview widget 3. Added master parameter for PhotoImage...