我在timer_ticker事件上每隔5秒更新一次VB.net中的ListView。
但我有一个问题,我不希望列表在刷新时“闪烁”。
有办法做到这一点吗?
我单独在一个函数中填充了Listview,但它没有任何区别。
这是我的代码:
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Try
Timer1.Enabled = False
FillListView()
Catch ex As Exception
Finally
Timer1.Enabled = True
End Try
End Sub