Add imageList to imagListBoxControl
private void AddAutomobileForm_Load(object sender, System.EventArgs e) { for (int i = 0; i < imageList1.Images.Count; i++) { imageListBoxControl1.ImageList = imageList1.Images[i]; } } Hello, everyone.have a good day. I’m keeping a number of photos in the imagList control. I was wondering, Does anyone know how to pass the photos to imageListBoxControl, which is a DevExpress component? […]