本文介绍了翻译 - 如何从一种语言翻译成另一种语言的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



任何人都可以帮我提示如何从一种语言翻译成另一种语言(英语到泰米尔语)



我尝试了什么:



从一种语言翻译成另一种语言

Hi,
Can any one help me with any hint how to translate from one language to another (English to Tamil)

What I have tried:

translate from one language to another

推荐答案


/// <summary>
/// Get the text for Form controls from Resource1
/// </summary>
private void TranslateForm()
{
    string formName = this.Name + "_";
    string str;

    foreach (Control ctrl in this.Controls)
    {
        System.Diagnostics.Debug.Print(formName + ctrl.Name);
        System.Diagnostics.Debug.Print(ctrl.GetType().ToString());          // e.g. System.Windows.Forms.Label
        try
        {
            str = Resource1.ResourceManager.GetString(formName + ctrl.Name);        // Form1_lblAddress etc.
            ctrl.Text = str;
        }
        catch (Exception)
        {
            Debug.Print(".");
        }
    }
}


这篇关于翻译 - 如何从一种语言翻译成另一种语言的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-14 19:19