VB.Net:从My.Resources动态选择图像

前端之家收集整理的这篇文章主要介绍了VB.Net:从My.Resources动态选择图像前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的My.Resources中有一组图像.我想选择选择图像在运行时动态显示.我该如何做?
'Static (Compile time) Assignment
UltraPictureBox1.Image = my.Resources.zoo_picture_1

'Dynamic (Runtime) Assignment
UltraPictureBox1.Image = ???
找到解决方案:
UltraPictureBox1.Image = _
    My.Resources.ResourceManager.GetObject(object_name_as_string)
原文链接:https://www.f2er.com/vb/255737.html

猜你在找的VB相关文章