您可以使用一個計時器來實現自動刷新數據,并且每次刷新只顯示20條數據。以下是一個示例代碼:
using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace ListViewAutoRefresh
{
public partial class Form1 : Form
{
private Timer timer;
private List<string> data;
private int currentIndex;
public Form1()
{
InitializeComponent();
data = new List<string>();
currentIndex = 0;
timer = new Timer();
timer.Interval = 1000; // 每秒鐘刷新一次
timer.Tick += Timer_Tick;
}
private void Timer_Tick(object sender, EventArgs e)
{
// 每次刷新顯示20條數據
int count = Math.Min(20, data.Count - currentIndex);
if (count > 0)
{
for (int i = 0; i < count; i++)
{
string item = data[currentIndex++];
listView1.Items.Add(item);
}
}
else
{
timer.Stop();
}
}
private void buttonStart_Click(object sender, EventArgs e)
{
// 模擬生成一些數據
for (int i = 0; i < 100; i++)
{
data.Add($"Item {i}");
}
timer.Start();
}
}
}
在這個例子中,當用戶點擊"Start"按鈕時,會模擬生成一些數據并開始計時器。計時器每秒鐘觸發一次Timer_Tick
事件,將20條數據添加到listView1
中。當所有數據都顯示完畢時,計時器停止。
您需要在Windows窗體中添加一個ListView控件(名稱為listView1)和一個Button控件(名稱為buttonStart),并將buttonStart的Click事件綁定到buttonStart_Click方法。
請注意,這只是一個示例代碼,您可能需要根據您的具體需求進行調整。