MdiListBarItem translation problem

I am using
this._barItemMDIList = new Syncfusion.Windows.Forms.Tools.XPMenus.MdiListBarItem();

I have already used
resources.ApplyResources(this._barItemMDIList, "_barItemMDIList");

How to translate this windowlist.png control?

Upon clicking of the “More Windows…”, we get one more non translated window

Please verify the attached file






syncfusion_1753d4c6.zip

1 Reply

AA Arun A Syncfusion Team May 3, 2012 06:49 AM UTC

Hi Srikanth,

Thanks for your interest in Syncfusion products.


You can change the caption 'More Windows' instead of 'Mor Windows' using the following code snippet as Demonstrated in the sample which is available in the following link.

[Sample Link]
http://www.syncfusion.com/downloads/Support/DirectTrac/89440/ListBarItem-1206505015.zip

[Code Snippet]

LocalizationProvider.Provider = new Localizer();


class Localizer : ILocalizationProvider
{
public string GetLocalizedString(System.Globalization.CultureInfo culture, string name)
{
switch (name)
{
case ToolsResourceIdentifiers.MoreWindowsCaptionInMenu :
return 'Mor Windows....';
default:
return string.Empty;
}
}

}

Please let us know if you have any concerns.

Regards,
Arun A


Loader.
Up arrow icon