Xamarin.Forms | ComponentOne
C1.Xamarin.Forms.Input Assembly / C1.Xamarin.Forms.Input Namespace / C1ComboBox Class / ItemLoading Event


In This Topic
    ItemLoading Event
    In This Topic
    Event raised before an item view is created.
    Syntax
    'Declaration
     
    
    Public Event ItemLoading As EventHandler(Of ComboBoxItemLoadingEventArgs)
    'Usage
     
    
    Dim instance As C1ComboBox
    Dim handler As EventHandler(Of ComboBoxItemLoadingEventArgs)
     
    AddHandler instance.ItemLoading, handler
    Event Data

    The event handler receives an argument of type ComboBoxItemLoadingEventArgs containing data related to this event. The following ComboBoxItemLoadingEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the items that is being loaded.  
    Gets or sets the visual element corresponding to the loading item.  
    See Also