ThreadStart和ParameterizedThreadStart之间的调用是不明确的

时间:2013-04-24 08:11:20

标签: c# wpf multithreading

我尝试编译以下代码:

public class SplashScreenManager
{
    private static readonly object mutex = new object();
    public static ISplashScreen CreateSplashScreen(Stream imageStream, Size imageSize)
    {
        object obj;
        Monitor.Enter(obj = SplashScreenManager.mutex);
        ISplashScreen vm2;
        try
        {
            SplashScreenWindowViewModel vm = new SplashScreenWindowViewModel();
            AutoResetEvent ev = new AutoResetEvent(false);
            Thread thread = new Thread(delegate
            {
                vm.Dispatcher = Dispatcher.CurrentDispatcher;
                ev.Set();
                Dispatcher.CurrentDispatcher.BeginInvoke(delegate //<- Error 2 here
                {
                    SplashForm splashForm = new SplashForm(imageStream, imageSize)
                    {
                        DataContext = vm
                    };
                    splashForm.Show();
                }, new object[0]);
                Dispatcher.Run();
            });
            thread.SetApartmentState(ApartmentState.STA);
            thread.IsBackground = true;
            thread.Start();
            ev.WaitOne();
            vm2 = vm;
        }
        finally
        {
            Monitor.Exit(obj);
        }
        return vm2;
    }
}

得到了错误:

  

以下方法或属性之间的调用不明确:   'System.Threading.Thread.Thread(System.Threading.ThreadStart)'和   'System.Threading.Thread.Thread(System.Threading.ParameterizedThreadStart)'

EDIT1: 我纠正了代码并得到错误2:

无法将匿名方法转换为输入'System.Windows.Threading.DispatcherPriority',因为它不是委托类型

2 个答案:

答案 0 :(得分:8)

您可以尝试将delegate{...}替换为delegate(){...}。这样编译器就会知道你想要一个没有参数的动作重载。

答案 1 :(得分:2)

对于BeginInvoke,有许多不同的方法调用根据您使用的框架而有所不同。请查看http://msdn.microsoft.com/en-us/library/ms604730(v=vs.100).aspxhttp://msdn.microsoft.com/en-us/library/ms604730(v=vs.90).aspx,或者您正在使用的任何.NET框架版本以获取更多信息。

尝试使用.NET 3.5和4兼容性;这应该解决你的第一个和第二个问题;您遇到的第二个错误的线索在错误消息中;您正在使用的方法是期望DispatcherPriority没有对象参数,并且您传递了一个Delegate,它实际上是第二个参数所必需的。

Thread thread = new Thread(new ThreadStart(() =>
        {
            vm.Dispatcher = Dispatcher.CurrentDispatcher;
            ev.Set();
            Dispatcher.CurrentDispatcher.BeginInvoke(DispatcherPriority.Normal, new MethodInvoker(() =>
            {
                SplashForm splashForm = new SplashForm(imageStream, imageSize)
                {
                    DataContext = vm
                };
                splashForm.Show();
            }));
            Dispatcher.Run();
        }));

请参阅MethodInvoker vs Action for Control.BeginInvoke了解为什么MethodInvoker是一个更有效的选择