Example #1
0
        public SuperPanelHelper(ISuperPanel <TControl, TSize, TRect> panel)
        {
            _panel = panel;

            _headPanel         = panel.CreateChild();
            _tailPanel         = panel.CreateChild();
            _interstitialPanel = panel.CreateChild();
            _suggestionsPanel  = panel.CreateChild();
        }
Example #2
0
        internal IApplicationPanel <TControl, TSize, TRect> CreateChild(ApplicationPanelHelper <TControl, TSize, TRect> helper)
        {
            var child = _panel.CreateChild(helper);

            return(child);
        }