.NET Windows Forms in a Nutshell

ImageListStreamer serializable

System. Windows .Forms (system. windows .forms.dll) sealed class

This class implements ISerializable and is used to serialize and deserialize ImageList data. Normally, you would be serializing from resources, and this will be handled by the designer for you. If not, this is the type of object you should retrieve from the System.Resources.ResourceManager for ImageList data.

public sealed class ImageListStreamer : System.Runtime.Serialization.ISerializable { // Public Instance Methods public void GetObjectData (System.Runtime.Serialization.SerializationInfo si , System.Runtime.Serialization.StreamingContext context ); // implements ISerializable }

Returned By

ImageList.ImageStream

Passed To

ImageList.ImageStream

Категории