ComponentFactory.Krypton.Toolkit.KryptonPaletteImages.KryptonPaletteImages C# (CSharp) Method

KryptonPaletteImages() private method

Initialize a new instance of the KryptonPaletteImages class.
private KryptonPaletteImages ( PaletteRedirect redirector, NeedPaintHandler needPaint ) : System
redirector PaletteRedirect Palette redirector for sourcing inherited values.
needPaint NeedPaintHandler Delegate for notifying paint requests.
return System
        internal KryptonPaletteImages(PaletteRedirect redirector,
                                      NeedPaintHandler needPaint)
        {
            Debug.Assert(redirector != null);

            // Create the different image sets
            _imagesCheckBox = new KryptonPaletteImagesCheckBox(redirector, needPaint);
            _imagesContextMenu = new KryptonPaletteImagesContextMenu(redirector, needPaint);
            _imagesDropDownButton = new KryptonPaletteImagesDropDownButton(redirector, needPaint);
            _imagesGalleryButtons = new KryptonPaletteImagesGalleryButtons(redirector, needPaint);
            _imagesRadioButton = new KryptonPaletteImagesRadioButton(redirector, needPaint);
            _imagesTreeView = new KryptonPaletteImagesTreeView(redirector, needPaint);
        }