我的函数有一个类型为chartpainteventargs的参数。我怎么称呼这个功能

时间:2019-03-15 04:46:59

标签: c# wpf xaml charts 3d

chart1_PostPaint(Chart chart, ChartPaintEventArgs e)

在上面的函数中,使用了ChartPaintEventArgs。我想调用这个函数。但是我不知道如何定义ChartPaintEventArgs。我尝试定义它。但是我收到错误,没有定义构造函数。谁能帮忙。

1 个答案:

答案 0 :(得分:0)

根据https://docs.microsoft.com/en-us/dotnet/api/system.web.ui.datavisualization.charting.chart.postpaint?view=netframework-4.7.2,在绘制图表元素之后发生postPaint。针对ChartArea和Legend之类的元素引发此事件

根据文档,我希望您仅在需要时覆盖该事件。您无需调用它。