Implements Image list form.
You can find more information in comments below. Overrided methods can be found in corresponding base classes and interfaces.
class CFormImageList :public virtual IFormImageList, public CForm
{
public:
    static const String ClassName; // Class name 
    int getImageCount() override;
    Image *getImage(const int index) override;
    int AddImage(Image *value) override;
    bool DeleteImage(const int index) override;
    bool DeleteImages() override;
    CFormImageList(IWindow *window, IRenderer *renderer);
};
| Namespace: | nitisa::standard | 
| Include: | Standard/Forms/ImageList/FormImageList.h |