Greetings!
As I searched key words like "wxSmith Unicode" ,"GUI Desinger Unicode " etc and did not find any match result,I asked the question here:
When I design UI,I noticed the string literals are guarded by _ other than wxT.This cause a problem if I were a Chinese user.
wxButton* btnOK=new wxButton(ID,_("button name"),bla,bla,...);//if the button name is in Chinese,I need to replace _ with wxT
I need to manually modify above code to
wxButton* btnOK=new wxButton(ID,wxT("Chinese Name"),bla,bla,...);
The pity thing is that every time when there is a modification on the UI,the modification on the above code(s) lost changes and get back to the wizard generated one(All those wxT were replaced by _),that is, a mess when the UI display Chinese named buttons,menus,etc.
Could anybody figure me out whether there is solution already on this issue ,even a workaround?
I use the latest SVN of C::B.
Thanks for your help in advance.
Regards,
Sam