我用xptables
创建了两个表单。单击form1中的按钮时,它将显示form2。我在哪里进行一些操作。结果将存储在form2的xptable
中。单击form2中的导出按钮时,它应将form2 xptable
的数据传递给form1 xptable
,并保存在新的文本文件中。当我运行我的代码时,结果存储在文本文件中,但不存储在form1的xptable
中。
编辑:从form1调用form2:
private void but_form2_Click(object sender, EventArgs e)
{
Form2 tempForm = new Form2();
this.AddOwnedForm(tempForm);
tempForm.Show();
}
这是我从form2导出的编码。
private void btnExport_Click(object sender, EventArgs e)
{
SaveFileDialog sfd = new SaveFileDialog();
sfd.Filter = "Save as txt (*.txt)|*.txt|All Files(*.*)|";
sfd.InitialDirectory = Application.StartupPath;
sfd.ShowDialog();
try
{
StreamWriter sw = new StreamWriter(new FileStream(sfd.FileName,
FileMode.OpenOrCreate,
FileAccess.Write));
Form1 obj = new Form1();
foreach (Row r in tblProxiesLive.Rows)
{
obj.loadsecondtable(r.Cells[1].Text);
sw.Write(r.Cells[1].Text + "\r\n");
}
sw.Close();
}
catch (Exception x)
{
string xp = x.ToString();
}
Form2 h = new Form2();
h.Hide();
h.Close();
}
。并在form1编码:
public void loadsecondtable(string s)
{
int snumber = this.tabproxmodel.Rows.Count + 1;
Row r = new Row();
r.Cells.Add(new Cell(snumber, Color.DarkBlue, Color.FromArgb(234, 215, 184), f2));
r.Cells.Add(new Cell(s, Color.FromArgb(225, 175, 91), Color.White, f2));
r.Cells.Add(new Cell("", (Image)new Bitmap(10, 10), Color.YellowGreen, Color.White, f2));
r.Cells.Add(new Cell("", (Image)new Bitmap(10, 10)));
r.Cells.Add(new Cell("", (Image)new Bitmap(10, 10)));
r.ForeColor = Color.FromArgb(6, 92, 155);
this.tabproxmodel.Rows.Add(r);
}
任何人都可以帮助我吗?我需要改变什么?
提前致谢...
答案 0 :(得分:1)
在btnExport_Click
方法中创建新的Form1
对象,您应该使用现有的对象。
好的解决方案是使用events
。
简单的解决方案是将Form1
作为参数传递给Form2
。代码:
添加到Form2
类:
Form1 pointerToForm1;
public Form2(Form1 pointerToForm1) {
this.pointerToForm1 = pointerToForm1ł
}
在Form1
更改方法中:
private void but_form2_Click(object sender, EventArgs e)
{
Form2 tempForm = new Form2(this);
this.AddOwnedForm(tempForm);
tempForm.Show();
}
在Form2
更改方法中:
private void btnExport_Click(object sender, EventArgs e)
{
(...)
//Form1 obj = new Form1();
Form1 obj = pointerToForm1;
foreach (Row r in tblProxiesLive.Rows)
{
obj.loadsecondtable(r.Cells[1].Text);
sw.Write(r.Cells[1].Text + "\r\n");
}
(...)
}
答案 1 :(得分:0)
我在这里找到了这位朋友的答案。
必须将xptable修饰符从private更改为public form2的编码如下:
Form f = Application.OpenForms["Form1"];
for (int df = 0; df < tblmodelform2.Rows.Count; df++)
{
int sNumber = ((Form1)f).tabmodelform1.Rows.Count;
Row r = new Row();
//int ss = int.Parse(s);
r.Cells.Add(new Cell(sNumber, Color.DarkBlue, Color.FromArgb(234, 215, 184), f2));
r.Cells.Add(new Cell(tblProxies22[df,1].Text, Color.FromArgb(225, 175, 91), Color.White, f2));
// r.Cells.Add(new Cell(pa, Color.FromArgb(225, 175, 91), Color.White, f2));
r.Cells.Add(new Cell("", (Image)new Bitmap(10, 10), Color.YellowGreen, Color.White, f2));
r.Cells.Add(new Cell("", (Image)new Bitmap(10, 10), Color.YellowGreen, Color.White, f2));
r.Cells.Add(new Cell("", (Image)new Bitmap(10, 10)));
// r.Cells.Add(new Cell("", (Image)new Bitmap(10, 10)));
if (!IsHandleCreated)
{
this.CreateControl();
((Form1)f).tabmodelform1.Rows.Add(r);
}
else
{
this.Invoke(new MethodInvoker(delegate
{
((Form1)f).tabmodelform1.Rows.Add(r);
}));
}
}
此解决方案不仅适用于xptable的所有控件。我们可以使用这个将listbox,datagridview项从表单传递给表单。 谢谢大家..!