pywinstyles.apply_style doesnt work properly on CTkinter #11
Unanswered
eaglecode0
asked this question in
Q&A
Replies: 1 comment
-
@eaglecode0 I guess you have to turn on the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
`import customtkinter
import pywinstyles
root = customtkinter.CTk()
pywinstyles.apply_style(root, style="aero")
root.mainloop()`
or
`import customtkinter
import pywinstyles
root = customtkinter.CTk()
pywinstyles.apply_style(root, "aero")
root.mainloop()`
Does not work, and there is no proper examples.
I tried using regular tk and it works fine, why is the problem whit CTk? it just remains in the CTk dark theme
Beta Was this translation helpful? Give feedback.
All reactions