Global Properties

I am using 6 Windows and 6 Containers in my programm.
An i need a lot of global variables , the same for all the windows and containers.
If i use a propertie, irs only working in his own window or container.
How can i make them global??

  1. Add the properties to the window
  2. Make a global module

I’d rethink how the information flows for your app. Do you know what MVC is or the observer pattern? At least use the second one for communcation.

Add the properties which should be global to a module. Set the scope of these properties either to Global or Public. If you make them Global you can use them anywhere in the application by their names (for example: MyProperty). If you make them Public you can use them anywhere in the application by their names prepended by the module name (for example: MyModule.MyProperty).