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

IconListManager() public method

Creates an instance of IconListManager that will add icons to a single ImageList using the specified IconSize.
public IconListManager ( System imageList, IconReader iconSize ) : System
imageList System ImageList to add icons to.
iconSize IconReader Size to use (either 32 or 16 pixels).
return System
        public IconListManager(System.Windows.Forms.ImageList imageList, IconReader.IconSize iconSize)
        {
            // Initialise the members of the class that will hold the image list we're
            // targeting, as well as the icon size (32 or 16)
            _imageLists.Add(imageList);
            _iconSize = iconSize;
        }

Same methods

IconListManager::IconListManager ( System smallImageList, System largeImageList ) : System