Lazy loaded list view in GTK#

后端 未结 4 1258
谎友^
谎友^ 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:40

    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.

提交回复
热议问题