Replies: 1 comment 3 replies
-
Hello @jeagh, thanks for trying pygubu. The problem here is that customtkinter restrict the use of some properties. But are not marked to be configurable using the configure method: You can configure those properties using the designer, or ask the customtkinter project to fix the configure method of Ctkcheckbox. Regards, |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have simple inheritance working where just buttons are involved but after a full day of trying to get a simple inherited checkbox app to work and failing it's now time to ask the experts.
This is my code that inherits two buttons and a checkbox. No problem with the buttons, the checkbox configure line generates this error:
ValueError: ['onvalue', 'offvalue'] are not supported arguments. Look at the documentation for supported arguments.
The error has to be something very basic. I've searched the Internet for an answer an even pestered my AI friends but to no avail.
`
#!/usr/bin/python3
from customtkinter_baseui import TestUI
import customtkinter
class Myapp(TestUI):
def init(self):
super().init() # Initialise the parent class
`
Beta Was this translation helpful? Give feedback.
All reactions