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