是否可以在循环中添加数据点?
public partial class Chart: Window
{
public IList<DataPoint> W1 { get; set; }
public Chart(Learn l1)
{
int z = Convert.ToInt32(l1.counter);
{
this.W1 = new List<DataPoint>
{
我想在那里添加for()循环去思考l1.ww1点并将其包含在W1 oxyplot列表中
new DataPoint(l1.ww1[i],i),
};
}
InitializeComponent();
}