APG.CodeHelper.IconHelper.IconListManager.IconListManager C# (CSharp) Method

IconListManager() public method

Creates an instance of IconListManager that will add icons to two ImageList types. The two image lists are intended to be one for large icons, and the other for small icons.
public IconListManager ( System smallImageList, System largeImageList ) : System
smallImageList System The ImageList that will hold small icons.
largeImageList System The ImageList that will hold large icons.
return System
        public IconListManager(System.Windows.Forms.ImageList smallImageList, System.Windows.Forms.ImageList largeImageList)
        {
            //add both our image lists
            _imageLists.Add(smallImageList);
            _imageLists.Add(largeImageList);

            //set flag
            ManageBothSizes = true;
        }

Same methods

IconListManager::IconListManager ( System imageList, IconReader iconSize ) : System