Hi all,
I downloaded and installed the latest Infragistics Windows Forms 2010.1 release but I'm having a very strange behaviour on PopupGalleryTool items.
From Visual Studio designer, I added a PopupGalleryTool to a form. The tool has no items yet. Items are loaded on form's constructor:
PopupGalleryTool tool = (PopupGalleryTool) toolbarManager.Tools["batches"];tool.Items.Clear();tool.Groups.Clear();
// create new itemGalleryToolItem item = new GalleryToolItem(batch.code);item.Title = batch.code;item.Description = SecurityElement.Escape(batch.description);item.Settings.Appearance.Image = img;tool.Items.Add(item);
// assign to a groupGalleryToolItemGroup group = tool.Groups.Add(catalog);tool.Groups[catalog].Items.Add(item.Key);
When I build&run my project, I see that my gallery items are shown correctly (with icon, title and description). But when I click away and then reopen the gallery, items are shown without description. Why? It's really strange... (in 2009 edition the same code was fine).
Thank you, bye! Valentina
Hi, we have the same problem with the PopupGalleryTool.
Have you any suggestion?
Thank you, Maria
I believe this is the same as issue TFS30328, which was fixed in versions 10.1 and later in early April of this year. Try downloading the latest SR to see if it fixes the issue.