其他分享
首页 > 其他分享> > winform 中 label透明化

winform 中 label透明化

作者:互联网

            label1.BackColor = Color.Transparent;//设置背景颜色为透明
            label1.Parent = pictureBox1;//将pictureBox1设为标签的父控件,也可以设置其他控件作为父类
            //pictureBox1.Controls.Add(label1);//也可以把控件添加到父控件
            label1.Location = new Point(80, 80);//重新设定标签的位置,这个位置时相对于父控件的左上角

 

标签:控件,label1,label,pictureBox1,设置,标签,80,透明化,winform
来源: https://www.cnblogs.com/tanxwuwang/p/14749657.html