在加载窗体时,把Picture
Box1的背景指定为透明,
再把Picture
Box1指定为Picture
Box2的父容器
就可以实现Picture
Box2透明于Picture
Box1且都透明与窗体背景了。
VB2010环境下的。
Private Sub Form1_Load(ByVal sender As System.Object,ByVal e As System.EventArgs) Handles MyBase.Load
Picture
Box1.BackColor = Color.Transparent
Picture
Box2.Parent = Picture
Box1
End Sub