ComponentOne Maps for UWP
C1.UWP.Maps Assembly / C1.Xaml.Maps Namespace / C1VectorItemBase Class / Loaded Event

In This Topic
    Loaded Event (C1VectorItemBase)
    In This Topic
    Occurs when a FrameworkElement has been constructed and added to the object tree, and is ready for interaction.
    Syntax
    'Declaration
     
    
    Public Event Loaded As RoutedEventHandler
    public event RoutedEventHandler Loaded
    Event Data

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

    PropertyDescription
    Gets a reference to the object that raised the event.  
    Remarks
    This event overrides Windows.UI.Xaml.UIElement's Loaded in order to allow handlers to prevent the default behavior of a loaded action.
    See Also