我正在尝试使用一种方法获取所有按钮的背景图像的路径,但我似乎无法获取路径。这是我的代码
b1.BackgroundImage = Image.FromFile(C:\\Users\\m\\Documents\\Visual Studio
2010\\Projects\\PApp\\Papp\\1.jpg) ;
b2.BackgroundImage = Image.FromFile(C:\\Users\\m\\Documents\\Visual Studio 2010\\Projects\\PApp\\Papp\\2.jpg) ;
Console.WriteLine(b2.BackgroundImage);
Console.WriteLine(b1.BackgroundImage);
我可以在按钮中显示图像,但我希望它在控制台中显示路径,但我得到的只是 System.Drawing.Bitmap。顺便说一下,路径是静态的。