سلام
چطور میتونم BackGround یه PictureBox رو Transparent کنم؟ به شکلی که کنترلهای زیر PictureBox رو هم نشون بده؟
Imports System.Windows.Forms
Public Class PicBox
Inherits PictureBox
Public Sub New()
SetStyle(ControlStyles.SupportsTransparentBackColor, True)
BackColor = Color.Transparent
End Sub
End Class