ListView.RetrieveVirtualItem Olay

Tanım

sanal modda olduğunda ListView ve gerektirdiğinde ListViewItemgerçekleşir.

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 

Olay Türü

Özel durumlar

Item Olay işlendiğinde özelliği bir öğeye RetrieveVirtualItem ayarlanmaz.

Örnekler

Aşağıdaki kod örneğinde bu olay için bir işleyici gösterilmektedir. Bu örnekte, listView1'in her ListViewItem birinin dizininin karesini görüntülemesi gerekir. Bu kod örneği, özelliği için VirtualMode sağlanan daha büyük bir örneğin parçasıdır.

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

Açıklamalar

Bir ListView nesne sanal moddayken, koleksiyonu kullanmak Items yerine nesneleri dinamik olarak oluştururListViewItem. Nesnenin bir ListViewItem nesne oluşturması gerektiğinde bu olay oluşturulur. Bu olay için işleyici uygun ListViewItem oluşturmalı veya önbellekten almalı ve özelliği yoluyla Item geri geçirmelidir.

Olayları işleme hakkında daha fazla bilgi için bkz. Olayları İşleme ve Oluşturma.

Şunlara uygulanır