Hi, My application is very similar to Demo1 example. Each node in the document represents an instance of various applications. When user clicks a node I call that node's UI with it’s stored configuration through reflection.
Question is: when I close the document, How can I call
dispose on the UI objects for each node which that document. Classes such as
GoDocument, GoSimpleNode … do not implement Dispose() method.
Do I need to do special logic in the Dispose of the GoView?
How dispose of the GoView works (meaning what objects does it free up).
Demo1 seems to leaks memeory. To reproduce this, run Demo1 example, create new document, add several nodes , close the docment without saving. If you repeat this 2-3 times, you can see memory of the demo1 keep incresing everytime.