我正在尝试将音符图像添加到现有面板中。我已经创建了图像的路径:
String NoteImage_path = Environment.CurrentDirectory + @"\Notes-Images\";
我尝试使用以下代码行将图像添加到面板:
this.panel2.Controls.Add(this.NoteImage_path);
但是我无法将String转换为System.Windows.Form.Control。
我该如何解决这个问题?任何帮助将不胜感激。谢谢!
答案 0 :(得分:1)
设置面板的背景图像
panel2.BackgroundImage = Image.FromFile(NoteImage_path);