我正在尝试将properties.Resource列表中的背景图像设置为一个。我已经知道如何检索单个图像。
我循环遍历该列表中的图像:
foreach(PropertyInfo property in typeof(Properties.Resources).GetProperties(BindingFlags.Static | BindingFlags.Public | BindingFlags.NonPublic))
{
if (property.Name.Contains("testimage"))
{
this.BackgroundImage = (Image)property.Name;
}
}
现在,当表单加载时,它不会显示图像。有人能让我知道在这种情况下我做错了什么。