Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrward/test-xwt-memory-leak
https://github.com/mrward/test-xwt-memory-leak
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mrward/test-xwt-memory-leak
- Owner: mrward
- Created: 2016-01-11T10:07:07.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-27T16:18:11.000Z (almost 9 years ago)
- Last Synced: 2023-03-12T06:03:13.491Z (over 1 year ago)
- Language: C#
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## XwtMemoryLeakTest
### Show Combo Box dialog
Adding items to a combo box and then disposing its parent dialog does not free the combo box list store and ends up keeping the dialog alive.
GLib.ToggleRef->
Gtk.ListStore->
Collections.Hashtable->
Gtk.RowInsertedHandler->
GtkBackend.ListStoreBackend->
System.EventHandler->
Xwt.ComboBox
ComboBox.WidgetBackendHost
Xwt.VBox->
XwtMemoryLeakTest.ComboBoxDialog### Show List View dialog
Adding a custom canvas cell view to a ListViewColumn and then disposing its parent dialog does not free the CanvasRenderer and ends up keeping the dialog alive.
GLib.ToggleRef->
GtkBackend.CanvasRenderer->
XwtMemoryLeakTest.CustomCanvasCellView->
Xwt.ListView->
Xwt.ListStore
Xwt.VBox->
XwtMemoryLeakTest.ListViewDialog