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

PaletteDataGridViewAll() public method

Initialize a new instance of the PaletteDataGridViewAll class.
public PaletteDataGridViewAll ( PaletteDataGridViewRedirect inherit, NeedPaintHandler needPaint ) : System
inherit PaletteDataGridViewRedirect Source for inheriting values.
needPaint NeedPaintHandler Delegate for notifying paint requests.
return System
        public PaletteDataGridViewAll(PaletteDataGridViewRedirect inherit,
                                      NeedPaintHandler needPaint)
            : base(inherit, needPaint)
        {
            Debug.Assert(inherit != null);

            // Create storage that maps onto the inherit instances
            _background = new PaletteDouble(inherit.BackgroundDouble, needPaint);
        }