ComponentFactory.Krypton.Ribbon.ViewRibbonPopupGroupManager.ViewRibbonPopupGroupManager C# (CSharp) Méthode

ViewRibbonPopupGroupManager() public méthode

Initialize a new instance of the ViewRibbonPopupGroupManager class.
public ViewRibbonPopupGroupManager ( Control control, KryptonRibbon ribbon, ViewBase root, ViewDrawRibbonGroup viewGroup, NeedPaintHandler needPaintDelegate ) : System
control System.Windows.Forms.Control Owning control.
ribbon KryptonRibbon Owning ribbon control instance.
root ViewBase View for group we are tracking.
viewGroup ViewDrawRibbonGroup Group to track.
needPaintDelegate NeedPaintHandler Delegate for performing painting.
Résultat System
        public ViewRibbonPopupGroupManager(Control control,
                                           KryptonRibbon ribbon,
                                           ViewBase root,
                                           ViewDrawRibbonGroup viewGroup,
                                           NeedPaintHandler needPaintDelegate)
            : base(control, root)
        {
            Debug.Assert(ribbon != null);
            Debug.Assert(viewGroup != null);
            Debug.Assert(needPaintDelegate != null);

            _ribbon = ribbon;
            _viewGroup = viewGroup;
            _needPaintDelegate = needPaintDelegate;
        }