我正试图让PictureBox的BackgroundImage没什么。
我已经尝试了
BackgroundImage3.BackgroundImage = Nothing
BackgroundImage3.Update() ' it didn't even work without this line of code
和
Dim n0 = Image
BackgroundImage3.BackgroundImage = n0
没有成功。
此外,这是if语句的代码,如果它有点帮助:
If (PictureBox3.BackgroundImage Is My.Resources.theimageIwant) Then
有什么建议吗?
答案 0 :(得分:0)
在我的Visual Studio 2010中,这条线路运行良好:
BackgroundImage3.BackgroundImage = Nothing
执行此代码后,背景图像消失;那是你想要做的?
我确定问题出在您进行BackgroundImage
更改的环境中,因此您可以发布完整的代码。发布完整的程序,您已在其中放置上述代码。
答案 1 :(得分:0)
事实证明,我将相同的功能(没有任何图像)传递给它下面的另一个PictureBox。冲突造成了很大的问题。谢谢你们帮助大家。