I need to apply some images to a button. I see the UltraButton has an ImageList attribute .Is there an UltaImageList tool I can just place on the form and bind it to the UltraButton ImageList attribute?
Hello, I will be happy to assist you with your question. We currently don't have an ultraImageList control available with NetAdvantage for Windows Forms. You have the ability to use the Microsoft imageList control to use in conjunction with the imageList property of the ultraButton control.To learn more about the imageList control please visit MSDN using the following link: http://msdn.microsoft.com/en-us/library/system.windows.forms.imagelist.aspx You should be able to set the imageList control to the ultraButton by using the following code:this.ultraButton1.ImageList = this.imageList1;Please let me know if you have further questions regarding this matter.