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

ViewDrawRibbonQATBorder() public method

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

            // Remember incoming references
            _ribbon = ribbon;
            _needPaintDelegate = needPaintDelegate;
            _minibar = minibar;
            _overlapAppButton = true;
        }