0

我在 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
4

0 回答 0