使用嵌入的资源而不是文件名设置 ImageAnnoation 图像

发布于 2024-10-16 21:12:49 字数 223 浏览 4 评论 0原文

我正在使用 DataVisualization 库中的图表控件,并且想要在图表上使用图像注释。问题是 ImageAnnotation.Image 属性是图像的路径,并且似乎没有可用于加载图像的公开 Bitmap 属性从 Resources 对象中,就像我可以从任何其他 .net 控件中一样。

无论如何,我是否忽略使用嵌入式资源加载它,而不是从磁盘读取单独的文件?

I'm using the Chart control from the DataVisualization library, and want to use image annotations on my chart. The problem is that the ImageAnnotation.Image property is a path to the image, and there doesn't appear to be an exposed Bitmap property that I could use to load the image from the Resources object like I can for any other .net control.

Is there anyway I'm overlooking to load this using embedded resources instead of reading a separate file off the disk?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

野却迷人 2024-10-23 21:12:49

我找到了答案。您需要将图像添加到父图表的 NamedImage 集合中。

private string imageName = "myImage";

//in constructor
NamedImage namedImage = new NamedImage(imageName, Properties.Resources.myImage);
mChart.Images.Add(namedImage);

//where creating the annotation
ImageAnnotation imageAnnotation = new ImageAnnotation();
imageAnnotation.Image = imageName;

I found the answer. You need to add the image to the parent Chart's NamedImage collection.

private string imageName = "myImage";

//in constructor
NamedImage namedImage = new NamedImage(imageName, Properties.Resources.myImage);
mChart.Images.Add(namedImage);

//where creating the annotation
ImageAnnotation imageAnnotation = new ImageAnnotation();
imageAnnotation.Image = imageName;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文