ComponentFactory.Krypton.Toolkit.ViewLayoutScrollViewport.NeedPaint C# (CSharp) 메소드

NeedPaint() 보호된 메소드

Requests a paint and optional layout of the control.
protected NeedPaint ( bool needLayout ) : void
needLayout bool Is a layout required.
리턴 void
        protected void NeedPaint(bool needLayout)
        {
            // Request a layout be performed immediately
            if (_needPaintDelegate != null)
                _needPaintDelegate(this, new NeedLayoutEventArgs(needLayout));
        }