将背景图像设置为资源图像文件

时间:2016-05-17 19:57:15

标签: c#

我正在尝试将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;
    }
}

现在,当表单加载时,它不会显示图像。有人能让我知道在这种情况下我做错了什么。

0 个答案:

没有答案