我在项目的Resources文件夹中添加了一个简单的.gif文件。
现在我用pictureBox创建了一个用户控件。 如何将.gif添加到pictureBox.Image = new Bitmap(path)。
这种情况下的路径是什么?
thanx!
答案 0 :(得分:2)
我认为你可以通过以下方式实现:
// Create a MemoryStream from the .gif file resource
MemoryStream ms = new MemoryStream(YourApplicationName.Properties.Resources.GifFileName);
// Instantiate a new Bitmap using the created MemoryStream
pictureBox.Image = new Bitmap(ms);
不完全确定这是否有效(目前无法测试),但它应该指向正确的方向。