Constructor ImageList
ImageList(SizeI)
Initializes a new empty instance of the ImageList class with
the specified image size.
public ImageList(SizeI size)
Parameters
sizeSizeI
ImageList(IEnumerable<Image>)
Initializes a new instance of the ImageList class with specified image list.
public ImageList(IEnumerable<Image> images)
Parameters
imagesIEnumerable<Image>Collection of images to be stored in this new instance.
ImageList(IEnumerable<Image>, SizeI)
Initializes a new instance of the ImageList class with specified parameters.
public ImageList(IEnumerable<Image> images, SizeI size)
Parameters
imagesIEnumerable<Image>Collection of images to be stored in this new instance.
sizeSizeINew size of the images.
ImageList(string?, Uri?)
Initializes a new instance of the ImageList class using an image strip loaded from the specified URL.
public ImageList(string? url, Uri? baseUri = null)
Parameters
urlstringThe URL of the image to load. Can be a relative or absolute path. Cannot be null or empty.
baseUriUriAn optional base URI to resolve relative URLs. If null, relative URLs are resolved based on the application's context.
ImageList(Image)
Initializes a new instance of the ImageList class with specified image strip.
public ImageList(Image stripImage)
Parameters
stripImageImageList of images concatenated in a single image strip.
ImageList(Image, int)
Initializes a new instance of the ImageList class with specified image strip.
public ImageList(Image stripImage, int imageWidth)
Parameters
stripImageImageList of images concatenated in a single image strip.
imageWidthintWidth of the particular image in the strip.
ImageList(bool)
Initializes a new instance of the ImageList with default values.
public ImageList(bool immutable)
Parameters
immutablebool
ImageList()
Initializes a new instance of the ImageList with default values.
public ImageList()