我有几个form需要全球化为中英文,我使用
Thread.CurrentThread.CurrentUICulture = new CultureInfo("zh-CHS");
ResourceManager resourceManager = new ResourceManager(typeof(form));
foreach (Control subControl in control.Controls)
{
   subControl.Text = resourceManager.GetString(subControl.Name + ".Text");
}
来遍历我的form的控件名字,使其变成对应的中、英文,但是我的form里有很多自定义的imagebutton,有normalImage和pressedImage两个属性放置我画的按钮图片。请问我如何用foreach这样的循环去替换imagebutton在不同语言下的背景图片?否则我只能一个空间一个控件的定位,很麻烦。