图片来源winform
您好,如何将图像源设置为 winforms 中的图像?
我的图像位于应用程序的资源文件夹中,只是
我尝试过这样的
PictureBox pb = new PictureBox(); pb.Image = Image.FromFile("资源/a.gif");
但它显示文件未找到异常。
提前致谢
Hi how can i set image source to an image in winforms?
my images are in Resources folder in the application only
I tried like this
PictureBox pb = new PictureBox();
pb.Image = Image.FromFile("Resources/a.gif");
But it is showing file not found exception.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果图像位于应用程序的资源中,您可以这样做:
If the image is in your application's resources, you can do that :