ImageList collection in a control

  • Thread starter Thread starter tinyabs
  • Start date Start date
T

tinyabs

Hi,

This is my custom control. When I try to add a image, I got the following
error message.

"Parameter must be of type Image. Parameter name: value"

public class AControl : UserControl
{

public ImageList LargeImages {

get { return FLargeImages; }

set {

FLargeImages = value;

Invalidate();

}

}
}
 
Back
Top