ComponentFactory.Krypton.Ribbon.VisualPopupMinimized.VisualPopupMinimized C# (CSharp) 메소드

VisualPopupMinimized() 공개 메소드

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.
리턴 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;
        }