ComponentFactory.Krypton.Toolkit.KryptonCheckedListBox.OnPaint C# (CSharp) Метод

OnPaint() защищенный Метод

Raises the Paint event.
protected OnPaint ( PaintEventArgs e ) : void
e PaintEventArgs An PaintEventArgs that contains the event data.
Результат void
        protected override void OnPaint(PaintEventArgs e)
        {
            if (Paint != null)
                Paint(this, e);

            base.OnPaint(e);
        }
KryptonCheckedListBox