ListView.RetrieveVirtualItem Událost

Definice

Nastane, ListView když je ve virtuálním režimu a vyžaduje .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 

Event Type

Výjimky

Vlastnost Item není nastavena na položku při RetrieveVirtualItem zpracování události.

Příklady

Následující příklad kódu ukazuje obslužnou rutinu pro tuto událost. V tomto příkladu listView1 potřebuje, aby každý ListViewItem zobrazoval druhou mocninu svého indexu. Tento příklad kódu je součástí většího příkladu poskytnutého VirtualMode pro vlastnost.

//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

Poznámky

Když je objekt ve virtuálním ListView režimu, vytváří ListViewItem objekty dynamicky místo použití Items kolekce. Tato událost je vyvolána, když objekt musí vytvořit ListViewItem objekt. Obslužná rutina pro tuto událost by měla vytvořit odpovídající ListViewItem nebo ji načíst z mezipaměti a předat ji zpět prostřednictvím Item vlastnosti.

Další informace o zpracování událostí najdete v tématu Zpracování a vyvolávání událostí.

Platí pro