Hi!
I have really searched the whole internet for this…without any success.
So here is my question.
I have my own class (OwnObject) derived from QObject and i do have a stylesheet. Is it possible to use custom properties in my stylesheet and to access them from my own class?
Like:
stylesheet:
OwnObject {
my_property: 10;
}
code (Python):
class OwnObject(QObject):
…
a = self.property(‘my_property’)
Thanks for your help!!
Greetings!
↧