Polyline using DataBinding and PointCollection for continuous update

前端 未结 3 1578
说谎
说谎 2020-12-10 07:35


first of all I describe my objective I want to achive. I want to visualise a continuous data stream (maximum 1000 values per second but could be reduced). This data str

3条回答
  •  生来不讨喜
    2020-12-10 08:05

    Kai to make the change notification propagate to your bindings you should be making use of a collection which implements change notificaiton, PointCollection does not do this. You could create your own collection however I'd recommend making use of ObservableCollection.

    In addition here is a similar SO post which also touches on a few other options for making the UI aware of your changes.

提交回复
热议问题