-
Hi. What I want is update list's view on runtime, when list's elements are added or deleted. Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, the first idea came up to me was that made |
Beta Was this translation helpful? Give feedback.
Hi, the first idea came up to me was that made
ListBox.UpdateDisplayContent()
public. But the boxes holding the contents near the end will display incorrectly.For example, There have 10 items and the current displaying contents are 8, 9, 0, 1, 2. If I add an new item, by invoking
UpdateDisplayContent()
will still display 8, 9, 0, 1, 2. But it should be 9, 10, 0, 1, 2.