something like image list!

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

is there any control in .NET like image list but it can store files from any
type, not only image format ?
thx all :)
 
"Just close your eyes and see"
is there any control in .NET like image list but it can store files from
any
type, not only image format ?
thx all :)

Not hard to make one.

Just create a collection that will store the image during design-time and
compile it into the resource manifest of the assembly. Then, in run-time,
fetch the images from the resource manifest and place back into the
collection (or do the fetch on request to limit memory consumption).

HTH,
Mythran
 
Back
Top