How to handle add to list event?

后端 未结 10 2381
伪装坚强ぢ
伪装坚强ぢ 2020-11-29 22:55

I have a list like this:

List list = new List

How to handle adding new position to this list?

When

10条回答
  •  孤城傲影
    2020-11-29 23:36

    You can't do this with List. However, you can do it with ObservableCollection. See ObservableCollection Class.

提交回复
热议问题