Excuse me, I want to implement a window interface to display the values of variables,is there any guidance?
-
During PySide development, we often encounter situations during debugging where we want to view the values of variables at runtime.
We generally use debugging or printing methods for this purpose.
Excuse me, I want to implement a window interface to display the values of variables.
Are there any existing open - source projects like this?
If I implement it myself, what knowledge do I need to learn? -
@markleo said in Excuse me, I want to implement a window interface to display the values of variables,is there any guidance?:
Excuse me, I want to implement a window interface to display the values of variables.
You mean at runtime for the actual end user of your application? Why would you/they want such a thing? As you say, viewing them at development time under a Python debugger --- which will have a "Watch" pane for this --- is usually all you would want.