我有两种形式(在同一个名称空间中),Form1从图像中获取数据,而GraphForm使用ILNumerics框架将数据绘制为表面图。
我从来没有用两种形式进行过这样的构造(这对C#来说是很新的,并且对于这件事来说是整体编码),而且我无法弄清楚为什么我的代码不起作用,因为它几乎是以前版本中的复制/粘贴内容。问here (Sujith H S answer)的问题。我也尝试了在各种类似问题中描述的其他构造,但结果相同:第二种形式和ILNumerics绘图界面出现了,但为空。
这是我链接的答案的我的版本:
在FORM1中:
// Form creation
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public static ILInArray<double> CrossCorrExpMatrixReShiftedILN;
//Here is my whole data acquisition code, about 800 lines long
ILInArray<double> CrossCorrExpMatrixReShiftedILN = CrossCorrExpMatrixReShifted;
GraphForm Form2 = new GraphForm();
Form2.Show();
在图形中:
public partial class GraphForm : Form
{
public GraphForm()
{
InitializeComponent();
}
private void GraphForm_Load(object sender, EventArgs e)
{
ILInArray<double> GraphData = Form1.CrossCorrExpMatrixReShiftedILN;
//Here I use GraphData to plot the surface
}
有谁知道为什么它不起作用?
最佳答案
您是否尝试过将ILInArray<double>
对象传递给GraphForm的构造函数并将其设置为局部变量?像下面这样吗?
在FORM1中:
GraphForm Form2 = new GraphForm(CrossCorrExpMatrixReShiftedILN);
Form2.Show();
在图形中:
public partial class GraphForm : Form
{
private ILInArray<double> CrossCorrExpMatrixReShiftedILN;
public GraphForm(ILInArray<double> pCrossCorrExpMatrixReShiftedILN)
{
InitializeComponent();
CrossCorrExpMatrixReShiftedILN = pCrossCorrExpMatrixReShiftedILN;
}
private void GraphForm_Load(object sender, EventArgs e)
{
ILInArray<double> GraphData = CrossCorrExpMatrixReShiftedILN;
//Here I use GraphData to plot the surface
}
关于c# - 在表格之间传递数据以绘制表面,无法正常工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50059037/