Hi Cosyspro,
Thank you for using Syncfusion Products.
We have checked your query and understand your requirement is to localize the Ok and Cancel button of SfComboBox. For this, you can localize the SfComboBox based on the CurrentUICulture by using the resource files and by adding the name or value pairs in the Resource Designer of resx file.
Code to set the current culture
|
//setting the current culture for localization
System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("de-DE");
System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("de-DE");
|
Set the desired value in Resx file according to the language used. For Ok and CancelButton as shown below:
Screenshot shows the Ok and Cancel button text are localized.
For more information about localization with SfComboBox , refer the following UG.
Similarly you can localize the desired text according your language preference. Please try this solution and let us know if it is helpful.
Regards,
Vijayalakshmi VR