how to override ListView Items Property without creating new control?
how to override ListView Items Property without creatin开发者_运维问答g new control ?
You should probably be setting ListView.Items as necessary, instead of overriding the property. If you are updating it too often, check ListView.BeginUpdate and ListView.EndUpdate.
Edit: after all, setting ListView.Items changes ListView.Text as well, and vice versa. There are other compilications too.
精彩评论