我有計劃像Start_method_2
使用該線程在WPF
private void do_my_method_click(object sender, RoutedEventArgs e)
{
//there are some variables and methods here
//works fine
ThreadPool.QueueUserWorkItem(Start_method);
// when added gives error this thread owned by other thread
ThreadPool.QueueUserWorkItem(Start_method_2);
}
Start_method(object state)
{
}
Start_method_2(object state)
{
}
的Start_method
輸出我不知道究竟在何處我錯了,我爲WPF和C#中的新手。
「給出錯誤這個線程被其他線程擁有」請檢查此,張貼_exact_錯誤信息(在不一個評論) – 2012-01-02 12:08:00
普通人,放輕鬆,他說他是新人。給他一些建設性的反饋。 – oleksii 2012-01-02 12:11:37