我已设置访问嵌入式资源并返回 System.Drawing.Image 但我不能使用它来设置画布的背景。
有人可以告诉我如何访问嵌入式图像文件并创建 System.Windows.Controls.Image。我到目前为止的代码是:
public static Image Load(Type classType, string resourcePath)
{
Assembly asm = Assembly.GetAssembly(classType);
Stream imgStream = asm.GetManifestResourceStream(resourcePath);
Image img = Image.FromStream(imgStream);
imgStream.Close();
return img;
}
如果您需要更多信息,请告诉我