InputPanel for WinForms | ComponentOne
C1.Win.C1InputPanel.4.5.2 Assembly / C1.Win.C1InputPanel Namespace / C1InputPanelBase Class / OnHandleDestroyed Method
System.EventArgs that contains the event data.

In This Topic
    OnHandleDestroyed Method (C1InputPanelBase)
    In This Topic
    Remove hosted controls before disposing of the parent control.
    Syntax
    'Declaration
     
    Protected Overridable Sub OnHandleDestroyed( _
       ByVal e As EventArgs _
    ) 
    protected virtual void OnHandleDestroyed( 
       EventArgs e
    )

    Parameters

    e
    System.EventArgs that contains the event data.
    Remarks

    This allows the host element to remain valid even if their parent view is disposed. To dispose of the hosted control, call Dispose on the hosted control directly.

    Note: C1.Framework.XView determines that a System.Windows.Forms.Controlbelongs to an C1.Framework.XView.Element if the control's System.Windows.Forms.Control.Tag property contains a reference to a System.Windows.Forms.Control object.

    See Also