ComponentFactory.Krypton.Toolkit.KryptonCheckedListBox.OnHandleCreated C# (CSharp) Méthode

OnHandleCreated() protected méthode

Raises the HandleCreated event.
protected OnHandleCreated ( EventArgs e ) : void
e System.EventArgs An EventArgs containing the event data.
Résultat void
        protected override void OnHandleCreated(EventArgs e)
        {
            // Let base class do standard stuff
            base.OnHandleCreated(e);

            // Force the font to be set into the text box child control
            PerformNeedPaint(false);

            // We need a layout to occur before any painting
            InvokeLayout();
        }
KryptonCheckedListBox