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
Alternately, you can look at implementing your own Gtk.TreeModelImplementor as described at Implementing GInterfaces on the Mono Project website. You can see one example here.
It should be fairly trivial to make such an implementation "lazy".