I want to add checkbox with transparent background to picturebox. I used code:
checkBox185.Parent = pictureBox1;
checkBox185.BackColor = Color.Transparent;
or:
pictureBox1.Controls.Add(checkBox185);
checkBox185.BackColor = Color.Transparent;
The problem is this "checkbox" disappears even when the back color is for example white. I added picture below: (The first two checkboxes are missing)