我写了一个程序来设计一个网络浏览器。我将我的代码组织成类。其实我有几个问题...
第一个问题:
为了访问表单元素,我在课堂上使用了这个语句:
Form1 fc = (Form1)Application.OpenForms["form1"];
当我调用一个元素时,我使用:
fc.listboxObject.SelectedItem;
我不知道这是否正确,因为当我使用
`Form1 f=new Form1();`
它将创建新表单,并且不会更新原始表单。我将表单中的所有元素设置为公开。
第二个问题 在表单中,我必须使用线程创建新的网页窗口,以便用户可以在不同的窗口中请求多个网页。
public void start_new_page()
{
Form1 f = new Form1();
Application.Run(f);
}
private void new_page_Click(object sender, EventArgs e)
{
Thread t = new Thread(new ThreadStart(start_new_page));
t.Start();
}
单击该按钮时,出现以下错误:跨线程操作无效:控件“listboxObject”从创建它的线程以外的线程访问。
我搜索了很多使用调用找到的解决方案,但我不想使用它,因为它只会更新原始表单。我想让每个表单彼此分开,但共享相同的历史列表和收藏列表。另外,我不能使用Backgroundworker。以下代码是其中一个类的方法之一,我在这里遇到错误。实际上,在类中的所有方法中,我都面临这个错误。
public void printlistbox(string textname)
{
Form1 fc = (Form1)Application.OpenForms["form1"];
int count = 0;
string line1;
System.IO.StreamReader file1 = new System.IO.StreamReader(textname);
fc.listboxObject.Items.Clear();
while ((line1 = file1.ReadLine()) != null)
{
string[] split = line1.Split(new Char[] { '\t' });
count = 0;
foreach (string s in split)
{
if (count == 1)
fc.listboxObject.Items.Add(s);
count += 1;
}
}
file1.Close();
单击打印按钮时,将调用 printlistbox 函数。