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

PaletteOffice2013Base() public method

Initialize a new instance of the PaletteOffice2010Base class.
public PaletteOffice2013Base ( Color schemeColors, ImageList checkBoxList, ImageList galleryButtonList, Image radioButtonArray, Color trackBarColors ) : System
schemeColors Color Array of palette specific colors.
checkBoxList ImageList List of images for check box.
galleryButtonList ImageList List of images for gallery buttons.
radioButtonArray Image Array of images for radio button.
trackBarColors Color Array of track bar specific colors.
return System
        public PaletteOffice2013Base(Color[] schemeColors,
                                     ImageList checkBoxList,
                                     ImageList galleryButtonList,
                                     Image[] radioButtonArray,
                                     Color[] trackBarColors)
        {
            Debug.Assert(schemeColors != null);
            Debug.Assert(checkBoxList != null);
            Debug.Assert(galleryButtonList != null);
            Debug.Assert(radioButtonArray != null);

            // Remember incoming sets of values
            _ribbonColors = schemeColors;
            _checkBoxList = checkBoxList;
            _galleryButtonList = galleryButtonList;
            _radioButtonArray = radioButtonArray;
            _trackBarColors = trackBarColors;

            // Get the font settings from the system
            DefineFonts();
        }
PaletteOffice2013Base