I have a UI Automation application that is written in C# and uses .NET(currently 3.5 but if 4 solves the issue I will gladly change). I am running in an English version of Windows 7. I want be able to run this application on any given UI, and have it behave as follows, regardless of how the given UI is setup or what the current system language is, as those things are generally beyond my control:

I want to force an application using UI Automation to use the Turkish rules for capitalization. Particularly, if the automation application was being run on a UI that contained the character 'i', I want the portions of UI automation that automatically convert a string/character to uppercase to convert that character to 'İ' not 'I'.

This is particularly an issue with access and accelerator keys. For example, if a button in a UI had 'i' as it's access key, then the AutomationElement in the UI automation application for that button would list its access key as 'I', which is incorrect in Turkish.

I have tried setting the Thread culture and Thread ui culture to Turkish but that does not work. I am unsure how else to go about forcing the AutomationElement class to do this. Any suggestions/help/examples would be greatly appreciated.

If this was unclear please let me know and I will try to explain it better.

link|improve this question
feedback

1 Answer

If you want to just uppercase strings correctly, it is as easy as that:

string turkish = "iptal";
CultureInfo turkishCulture = new CultureInfo("tr-TR");
string upperCased = turkish.ToUpper(turkishCulture);

Unfortunately, you would have to do this for each string. Unfortunately, I don't quite know what is your use case, so my answer might be not very useful...

link|improve this answer
I am aware of that unfortunately the AutomationElement class performs something akin to a toupper automatically when retrieving the access and accelerator keys for a UI control. I need to get the UI Automation features to use that rule when they perform string operations. – Scott R Jun 9 '11 at 12:41
@Scott R: To me this is obvious bug on their side. Probably there is no way to fix it, the only thing we could do is to file the bug to their tracking system. – Paweł Dyda Jun 10 '11 at 6:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.