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

ViewLayoutRibbonQATFromOverflow() public method

Initialize a new instance of the ViewLayoutRibbonQATFromOverflow class.
public ViewLayoutRibbonQATFromOverflow ( Control parentControl, KryptonRibbon ribbon, NeedPaintHandler needPaint, bool showExtraButton, ViewLayoutRibbonQATContents contents ) : System
parentControl System.Windows.Forms.Control Owning control used to find screen positions.
ribbon KryptonRibbon Owning ribbon control instance.
needPaint NeedPaintHandler Delegate for notifying paint requests.
showExtraButton bool Should the extra button be shown.
contents ViewLayoutRibbonQATContents Source for finding buttons that are overflowing.
return System
        public ViewLayoutRibbonQATFromOverflow(Control parentControl,
                                               KryptonRibbon ribbon,
                                               NeedPaintHandler needPaint,
                                               bool showExtraButton,
                                               ViewLayoutRibbonQATContents contents)
            : base(ribbon, needPaint, showExtraButton)
        {
            Debug.Assert(parentControl != null);
            Debug.Assert(contents != null);

            _contents = contents;
            _parentControl = parentControl;
        }
ViewLayoutRibbonQATFromOverflow