我想在PictureBoxes上繪製標籤,但應該是透明背景。 這是我的代碼:`PictureBox(面板上)的C#標籤(透明backGround)
Labels[i].Location = new Point(0, 0);
Labels[i].Size = new Size(13, 13);
Labels[i].BackColor = Color.Transparent;
Labels[i].ForeColor = Color.Blue;
Invoke(new MethodInvoker(delegate { Panels.Controls.Add(Pictures[i]); }));
Invoke(new MethodInvoker(delegate { Panels.Controls.Add(Labels[i]); }));
我'拉我的圖片精美,標籤太多...但我得到的圖片下的標籤(我可以看到每一個標籤,當我拖動圖片,坐在位) 所以我想知道,我可以如何將它們放在Front with Transparent BackGround中。謝謝 `
Controls.Add()調用錯誤。您必須將其添加到PictureBox,而不是面板。 –