-
I have just recently started to familiarize myself with slint and have encountered one problem. From python I need to get data from
https://docs.slint.dev/latest/docs/python/slint
Please help me with this problem. Maybe I am missing something or there is no such functionality in python? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Your observation is correct, Instantiate it, and then use the instance to access the globals. For example: instance = slint.loader.app_window.MainWindow()
instance.show()
...
instance.PercentageAdapter.codeIn = "Test"; |
Beta Was this translation helpful? Give feedback.
Your observation is correct,
slint.loader.app_window
contains a list of exported components. In your case, ou are …