本文介绍了透明标签的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图使标签透明,以便背景显示其背后的内容
i was trying to make my label transparent so that the background show what''s behind it
推荐答案
Label1.Parent = Me
Label1.BackColor = Color.Transparent
图片框(在form_load中):
Picturebox (in form_load):
Label1.Parent = PictureBox1
Label1.BackColor = Color.Transparent
Label1.BackColor=Color.Transparent
VB6中名为Label1
的标签的代码为
The Code in VB6 for a label named Label1
would be
Label1.BackStyle=0
这篇关于透明标签的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!