Hi
I have my mdimanager with the tablistbutton set to true. How do i assign images to the dropdown menu for each open tab in the group?
I assigned an image to a tab thinking it might pull through to the dropdown list but it did not?
any ideas?
Hi Boris
Thanks that worked...
Had a look at your code and then used the following to get it working the way i wanted....
MdiManger:TabSettings:TabAppearance:
Image = ImageList:Images:Item[1].
Hello Burmo,
You could try the following code for the image to also show in the dropdown list:
Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance(); appearance1.Image = ((object)(resources.GetObject("appearance1.Image"))); this.ultraTabbedMdiManager1.TabSettings.TabAppearance = appearance1;
Please let me know if this suits your needs.