如何实现flash动画背景透明?
我已经设置了WMODE为transparent,但还是没有透明,求高手指点。
利用控件的Region属性,利用System.Drawing.Drawing2D.GraphicsPath()画出非透明区域,将这个闭合区域赋给Region属性。 Dim gp As New GraphicsPath(),gp.AddLine(point1, point2).。。
gp.CloseAllFigures()
Me.Region = New Region(gp)