C#如何在线程中访问控件对象

在线程中我想实现listView对象但弹出错误不能在线程中访问不是线程创建的对象我该怎么写?Threadt=newThread(newThreadStart(FindFi... 在线程中我想实现 listView 对象
但弹出错误 不能在线程中访问不是线程创建的对象
我该怎么写?

Thread t = new Thread(new ThreadStart(FindFileInDir));
t.Start();

void FindFileInDir() //遍历目录文件
{
listView2.Items.Add(path);
}
展开
 我来答
freeeeeewind
推荐于2016-08-14 · TA获得超过1万个赞
知道大有可为答主
回答量:3227
采纳率:94%
帮助的人:1342万
展开全部

利用ListView.Invoke解决跨线程安全调用,关键代码如下:

void  FindFileInDir( ){
    if( listView2.InvokeRequired)
    {
       // 跨线程调用
       listView2.Invoke(new MethodInvoker(delegate
       {
             listView2.Items.Add(path);
       }));
    }
    else
    {
       //直接调用 
       listView2.Items.Add(path);
    }
} //End of FindFileInDir
gaizhongfeng
推荐于2018-04-24 · 超过30用户采纳过TA的回答
知道答主
回答量:152
采纳率:0%
帮助的人:67万
展开全部
在启动线程前边加上 Control.CheckForIllegalCrossThreadCalls = false;就可以了吧,用委托也可以做
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友b7d2b2f
2013-10-13 · TA获得超过901个赞
知道小有建树答主
回答量:994
采纳率:50%
帮助的人:580万
展开全部
//参见这个例子,在线程中访问控件对象,要用到控件的invoke方法

using System;
using System.Drawing;
using System.Windows.Forms;
using System.Threading;

public class MyFormControl : Form
{
public delegate void AddListItem();
public AddListItem myDelegate;
private Button myButton;
private Thread myThread;
private ListBox myListBox;
public MyFormControl()
{
myButton = new Button();
myListBox = new ListBox();
myButton.Location = new Point(72, 160);
myButton.Size = new Size(152, 32);
myButton.TabIndex = 1;
myButton.Text = "Add items in list box";
myButton.Click += new EventHandler(Button_Click);
myListBox.Location = new Point(48, 32);
myListBox.Name = "myListBox";
myListBox.Size = new Size(200, 95);
myListBox.TabIndex = 2;
ClientSize = new Size(292, 273);
Controls.AddRange(new Control[] {myListBox,myButton});
Text = " 'Control_Invoke' example";
myDelegate = new AddListItem(AddListItemMethod);
}
static void Main()
{
MyFormControl myForm = new MyFormControl();
myForm.ShowDialog();
}
public void AddListItemMethod()
{
String myItem;
for(int i=1;i<6;i++)
{
myItem = "MyListItem" + i.ToString();
myListBox.Items.Add(myItem);
myListBox.Update();
Thread.Sleep(300);
}
}
private void Button_Click(object sender, EventArgs e)
{
myThread = new Thread(new ThreadStart(ThreadFunction));
myThread.Start();
}
private void ThreadFunction()
{
MyThreadClass myThreadClassObject = new MyThreadClass(this);
myThreadClassObject.Run();
}
}

// The following code assumes a 'ListBox' and a 'Button' control are added to a form,
// containing a delegate which encapsulates a method that adds items to the listbox.

public class MyThreadClass
{
MyFormControl myFormControl1;
public MyThreadClass(MyFormControl myForm)
{
myFormControl1 = myForm;
}

public void Run()
{
// Execute the specified delegate on the thread that owns
// 'myFormControl1' control's underlying window handle.
myFormControl1.Invoke(myFormControl1.myDelegate);
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
syht2000
高粉答主

2013-10-13 · 关注我不会让你失望
知道大有可为答主
回答量:3万
采纳率:79%
帮助的人:1.4亿
展开全部
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式