从资源加载 Microsoft 图表控件中的标记图像
本文关键字:图像 控件 资源 加载 Microsoft | 更新日期: 2023-09-27 18:36:10
平台 : C#IDE: Microsoft Visual Studio 2010
我正在尝试从资源路径在图表控件中的某个点加载标记图像,但它无法加载文件路径。有什么建议吗?
foreach (var pt in chart1.Series["Series1"].Points)
{
foreach (DataRow dr in ds.Tables[0].Rows)
{
if (dr["OverNo"].Equals(pt.XValue) && Convert.ToInt32(dr["Fow"]) > 0)
{
// pt.XValue +=5;
if (Convert.ToInt32(dr["Fow"]) > 0)
{
//pt.MarkerImage = s + SC.whiteBall; // this works fine
//pt.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
if (Convert.ToInt32(dr["Fow"]) == 1)
{
// Bitmap b = new Bitmap(Properties.Resources.WhiteBall1);
pt.MarkerImage = s + SC.whiteBall;
pt.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
}
}
}
}
}
错误:图像加载器 - 无法从此位置加载图像: System.Drawing.Bitmap in Program.cs
- 将图像文件作为内容包含在应用程序中,复制到输出目录。
- 对 MainApplicationPath''Images''yourImage.bmp 等
MarkerImage
使用完整路径。检查File.Exists
。 - 可以对数据点和序列使用
MarkerImage
属性。如果对数据系列使用特定图像,则所有数据点都将继承该图像。您可以针对特定数据点覆盖它。 - 使用自定义映像时使用 MarkerStyle.None 。
- 如果从自定义图像切换到常规标记并返回使用数据点的
DeleteCustomProperty("MarkerImage")
和DeleteCustomProperty("MarkerStyle")
,则重置。
您实际上可以使用嵌入的资源,而不是复制到输出目录的文件:
var myImage = new NamedImage("my_image_key", Properties.Resources.my_image);
myChartControl.Images.Add(myImage);
mySeries.MarkerImage = "my_image_key";
- 将图像文件(如 my_image.png)作为资源加载。
- 通过 NamedImage 对象将其添加到图表控件的图像集合中。
- 将用于对象的键名称传递到 MarkerImage 系列/点属性中。
PS:将资源文件设置为 嵌入式资源 和 标记样式 到 无 似乎是可选的。