I\'m looking to display a large dataset via a list view in GTK# and performance is an issue here. I\'m currently using a TreeView backed with a ListStore, but adding all my dat
Maybe you can add the data using a different thread, so that the current application doesn't "freeze", but just keeps running. It will probably still take the same amount of time, but at least the user can work with the rest of the application in mean time.