This is not really a Syncfusion issue, but I thought I would post here and see if anybody has advice.
I have imagelists that I want to use from two separate XPMenu sample programs. The design-time imagelist editor in VS Studio doesn''t give me an easy way to combine them, or even just save images from one to disk so I can load them in to the other. This editor seems a little primtive.
Any suggestions for a better way to manage imagelists and get bitmaps out of one and into another? I do have a hack in place:
// HACK: until I can figure out how to merge image lists at design-time
imageList1.Images.Add(imageList2.Images[1]);
imageList1.Images.Add(imageList2.Images[2]);
imageList1.Images.Add(imageList2.Images[3]);
Jim