ComponentFactory.Krypton.Ribbon.ViewDrawRibbonQATOverflow.ViewDrawRibbonQATOverflow C# (CSharp) Method

ViewDrawRibbonQATOverflow() public method

Initialize a new instance of the ViewDrawRibbonQATOverflow class.
public ViewDrawRibbonQATOverflow ( KryptonRibbon ribbon, NeedPaintHandler needPaintDelegate ) : System
ribbon KryptonRibbon Reference to owning ribbon control.
needPaintDelegate NeedPaintHandler Delegate for notifying paint/layout changes.
return System
        public ViewDrawRibbonQATOverflow(KryptonRibbon ribbon,
                                         NeedPaintHandler needPaintDelegate)
        {
            Debug.Assert(ribbon != null);
            Debug.Assert(needPaintDelegate != null);

            // Remember incoming references
            _ribbon = ribbon;
            _needPaintDelegate = needPaintDelegate;
        }