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

VisualPopupMinimized() public method

Initialize a new instance of the VisualPopupMinimized class.
public VisualPopupMinimized ( KryptonRibbon ribbon, ViewManager viewManager, ViewDrawRibbonCaptionArea captionArea, IRenderer renderer ) : System
ribbon KryptonRibbon Owning ribbon control instance.
viewManager ComponentFactory.Krypton.Toolkit.ViewManager View manager instance for managing view display.
captionArea ViewDrawRibbonCaptionArea View element that manages the custom chrome injection.
renderer IRenderer Drawing renderer.
return System
        public VisualPopupMinimized(KryptonRibbon ribbon,
                                    ViewManager viewManager,
                                    ViewDrawRibbonCaptionArea captionArea,
                                    IRenderer renderer)
            : base(viewManager, renderer, true)
        {
            Debug.Assert(ribbon != null);
            Debug.Assert(captionArea != null);

            // Remember incoming references
            _ribbon = ribbon;
            _captionArea = captionArea;
        }