TouchToolKit for WinForms | ComponentOne
C1.Win.TouchToolKit Namespace / C1ApplicationZoom Class / C1ZoomAttached Event
Example

In This Topic
    C1ZoomAttached Event (C1ApplicationZoom)
    In This Topic
    Occurs when the C1Zoom component has attached to a System.Windows.Forms.Form.
    Syntax
    'Declaration
     
    
    Public Event C1ZoomAttached As EventHandler(Of C1ZoomAttachedEventArgs)
    public event EventHandler<C1ZoomAttachedEventArgs> C1ZoomAttached
    Event Data

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

    PropertyDescription
    Gets the System.Windows.Forms.Form that has been attached by C1Zoom component.  
    Gets the C1Zoom component that has attached to the Form.  
    Remarks

    You can change the initial settings of C1Zoom component in this event's event handler.

    Example

    The following code example shows how to use this event.

    This code example is part of a larger example provided for the C1ApplicationZoom class.

    See Also