Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有人在使用控件数据绑定方法时抛出这个异常?
我有这样的数据结构
public class ChartData { public int Year {get;set;} public decimal Stat {get;set;} }
它的收藏是
List<ChartData> cData;
所以我将此对象绑定为
chart1.BindXY(cData,"Year",cData,"Stat");
使用其他数据绑定方法时我也会遇到同样的异常
什么是图表1? 那是一个外部图表组件吗?
使用反射器打开图表组件 dll 或查看文档以了解适当的使用方法。
当 Visual Studio 创建方法存根以响应调用不存在的类方法时的“生成方法存根”上下文菜单命令时,它会添加 NotImplementedException。
也许您使用的图表控件还没有完全实现,而您尝试调用的方法只是一个存根?