Lazy loaded list view in GTK#

后端 未结 4 1250
谎友^
谎友^ 2021-02-07 06:54

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

4条回答
  •  悲&欢浪女
    2021-02-07 07:45

    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".

提交回复
热议问题