-1

我的字段名称为

List<string> names = af.GetSignatureNames();

当我在组合框中输入为

comboBox1.Items.Add(new combodata("Signature 1"));
comboBox1.Items.Add(new combodata("Signature 2"));
comboBox1.Items.Add(new combodata("Signature 3"));

并在函数中检索相同的内容

comboBox1.SelectedItem.ToString();//combobox value taken

问题是我在 pdf 文件中有表单 2 上的组合框和表单 1 上的字符串名称列表我想比较这两个字段,因为我有一些数据要通过单击按钮添加到相应的签名字典中。

4

1 回答 1

0

在一个或另一个上使用公共静态变量以从另一种形式访问它。

class myForm1
{    
   public static List<string> myList;

   //code here
}

class myForm2
{
   myForm1.myList //do something with it
}
于 2012-11-27T11:04:43.553 回答