使用嵌入的资源而不是文件名设置 ImageAnnoation 图像
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了答案。您需要将图像添加到父图表的
NamedImage
集合中。I found the answer. You need to add the image to the parent Chart's
NamedImage
collection.