Share via


ListView.RetrieveVirtualItem Kejadian

Definisi

Terjadi ketika ListView berada dalam mode virtual dan memerlukan ListViewItem.

public:
 event System::Windows::Forms::RetrieveVirtualItemEventHandler ^ RetrieveVirtualItem;
public event System.Windows.Forms.RetrieveVirtualItemEventHandler RetrieveVirtualItem;
public event System.Windows.Forms.RetrieveVirtualItemEventHandler? RetrieveVirtualItem;
member this.RetrieveVirtualItem : System.Windows.Forms.RetrieveVirtualItemEventHandler 
Public Custom Event RetrieveVirtualItem As RetrieveVirtualItemEventHandler 

Jenis Acara

Pengecualian

Properti Item tidak diatur ke item saat peristiwa ditangani RetrieveVirtualItem .

Contoh

Contoh kode berikut menunjukkan handler untuk kejadian ini. Dalam contoh ini, listView1 memerlukan masing-masing ListViewItem untuk menampilkan kuadrat indeksnya. Contoh kode ini adalah bagian dari contoh yang lebih besar yang disediakan untuk VirtualMode properti .

//The basic VirtualMode function.  Dynamically returns a ListViewItem
//with the required properties; in this case, the square of the index.
void listView1_RetrieveVirtualItem(object sender, RetrieveVirtualItemEventArgs e)
{
    //Caching is not required but improves performance on large sets.
    //To leave out caching, don't connect the CacheVirtualItems event 
    //and make sure myCache is null.

    //check to see if the requested item is currently in the cache
    if (myCache != null && e.ItemIndex >= firstItem && e.ItemIndex < firstItem + myCache.Length)
    {
        //A cache hit, so get the ListViewItem from the cache instead of making a new one.
        e.Item = myCache[e.ItemIndex - firstItem];
    }
    else
    {
        //A cache miss, so create a new ListViewItem and pass it back.
        int x = e.ItemIndex * e.ItemIndex;
        e.Item = new ListViewItem(x.ToString());
    }
}
'The basic VirtualMode function.  Dynamically returns a ListViewItem
'with the required properties; in this case, the square of the index.
Private Sub listView1_RetrieveVirtualItem(ByVal sender As Object, ByVal e As RetrieveVirtualItemEventArgs) Handles listView1.RetrieveVirtualItem
    'Caching is not required but improves performance on large sets.
    'To leave out caching, don't connect the CacheVirtualItems event 
    'and make sure myCache is null.
    'check to see if the requested item is currently in the cache
    If Not (myCache Is Nothing) AndAlso e.ItemIndex >= firstItem AndAlso e.ItemIndex < firstItem + myCache.Length Then
        'A cache hit, so get the ListViewItem from the cache instead of making a new one.
        e.Item = myCache((e.ItemIndex - firstItem))
    Else
        'A cache miss, so create a new ListViewItem and pass it back.
        Dim x As Integer = e.ItemIndex * e.ItemIndex
        e.Item = New ListViewItem(x.ToString())
    End If


End Sub

Keterangan

ListView Saat objek berada dalam mode virtual, objek akan dibuat ListViewItem secara dinamis alih-alih menggunakan Items koleksi. Kejadian ini dinaikkan ketika objek harus membuat ListViewItem objek. Handler untuk kejadian ini harus membuat yang sesuai ListViewItem atau mengambilnya dari cache, dan meneruskannya kembali melalui Item properti .

Untuk informasi selengkapnya tentang menangani peristiwa, lihat Menangani dan Menaikkan Peristiwa.

Berlaku untuk