如何在winform C#中获取所有标签文本的列表

时间:2018-04-23 19:25:41

标签: c# winforms

我有C#WinForm程序。

如何获取所有标签文字列表?

我需要翻译成另一种语言。

更多解释:

我有很多带有许多标签和文本框的表单。

我不想一个接一个地改变。

这就是为什么我想获得所有内容的列表

感谢

1 个答案:

答案 0 :(得分:1)

尝试下面的代码

foreach (Control control in this.Controls)
        {
            if (control is Label)
            {
                textBox1.AppendText(control.Text);
                //your code here to change the language
            }
        }