我正在用c#创建一个多形式的应用程序。我将来自用户的值存储在表单1中的List中,并且我想要访问表单2中相同列表的相同存储值...我无法访问存储的值...错误I' m getting表示我从表单2中访问的列表中没有值...请帮帮我......
public Form1()
{
InitializeComponent();
}
public List<string> sub = new List<string>();
public int clickcounter = 1;
public void additems()
{
sub.Add("Java");
sub.Add("Web Technology");
sub.Add("Software Engineering");
sub.Add("Networks");
sub.Add("ADO.net");
}
public void show()
{
int x = 10;
int y = 10;
int m = sub.Count;
for (int i = 0; i < m; i++)
{
string name = "txtBox_" + (i + 1).ToString("00");
TextBox txt = new TextBox();
txt.Name = name;
this.Controls.Add(txt);
txt.Text = sub[i];
txt.ReadOnly = true;
y += 20;
txt.Location = new Point(x, y);
txt.Width = 120;
}
}
private void button1_Click(object sender, EventArgs e)
{
if (clickcounter == 1)
{
additems();
show();
}
}
答案 0 :(得分:0)
不要从Form2访问存储在Form1中的Object,而是将Object作为属性传递给Form2。
e.G: 定义财产:
public partial class Form2 : Form
{
public List<String> PersonNames { get; set; }
public Form2()
{
InitializeComponent();
}
}
将对象从form1传递给form2:
private void button1_Click(object sender, EventArgs e)
{
List<String> PersonNames = new List<String>() { "Harald", "Thomas", "Markus" };
ObjektBinaerSerialisieren form2 = new ObjektBinaerSerialisieren();
form2.PersonNames = PersonNames;
}
答案 1 :(得分:0)
为Form2添加一个本地 List 变量,以及一个构造函数,例如
Public List<String> locaList;
public form2( List aList )
{
InitializeComponent( );
localList = aList;
}
然后在创建表单2时传递列表。
希望有所帮助。