how to ransparent background color label over button dynamic in c#?
Label titre= new Label();
PictureBox btnimage = new PictureBox();
btnimage.Name = "img" + i;
btnimage.Location = new Point(19, 15);
btnimage.Size = new Size(170, 153);
btnimage.BackgroundImageLayout = ImageLayout.Stretch;
// type annonces
titre.Name = "name" + i;
titre.Text = systeme.Annonces[i].name.ToString();
titre.ForeColor = Color.Black;
titre.TextAlign = ContentAlignment.MiddleCenter;
titre.Font = new Font("Tahoma", 9, FontStyle.Bold);
titre.Location = new Point(23, 125);