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

GalleryButtonImages() public method

Initialize a new instance of the GalleryButtonImages class.
public GalleryButtonImages ( NeedPaintHandler needPaint ) : System
needPaint NeedPaintHandler Delegate for notifying paint requests.
return System
        public GalleryButtonImages(NeedPaintHandler needPaint)
        {
            // Store the provided paint notification delegate
            NeedPaint = needPaint;

            // Create the storage
            _common = null;
            _disabled = null;
            _normal = null;
            _tracking = null;
            _pressed = null;
        }