我发现使用Lync 2010 SDK控件的多个UI线程导致程序崩溃的问题。
我遇到的错误是:
{"Must create DependencySource on same Thread as the DependencyObject."}
如果有人可以向我解释为什么会发生这种情况,或者如何解决这个问题。太棒了!
<Window x:Class="Lync.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:lync="clr-namespace:Microsoft.Lync.Controls;assembly=Microsoft.Lync.Controls"
Title="MainWindow" Height="350" Width="525">
<StackPanel>
<lync:PresenceIndicator Source="sip:gawicks@home.com"/>
<Button Height="20" Width="20" Click="Button_Click"> </Button>
</StackPanel>
</Window>
private void Button_Click(object sender, RoutedEventArgs e)
{
//Simply creating another UI thread on button click https://eprystupa.wordpress.com/2008/07/28/running-wpf-application-with-multiple-ui-threads/
Thread thread = new Thread(() =>
{
MainWindow w = new MainWindow();
//Crash!!
w.Show();
w.Closed += (sender2, e2) =>
w.Dispatcher.InvokeShutdown();
System.Windows.Threading.Dispatcher.Run();
});
thread.SetApartmentState(ApartmentState.STA);
thread.Start();
}
答案 0 :(得分:1)
似乎这确实是Lync控件的限制。在内部,这些控件使用Lync客户端。而作为COM包装器的lync客户端喜欢生活在单个UI线程上。
所以我想出了自己的控制权。在lync客户端上写了一个外观,它位于一个UI线程上。并调度所有调用它。而且Voilà正在努力!
答案 1 :(得分:0)
private void Button_Click(object sender, RoutedEventArgs e)
{
//Simply creating another UI thread on button click https://eprystupa.wordpress.com/2008/07/28/running-wpf-application-with-multiple-ui-threads/
Thread thread = new Thread(() =>
{
SynchronizationContext.SetSynchronizationContext(
new DispatcherSynchronizationContext(
Dispatcher.CurrentDispatcher));
MainWindow w = new MainWindow();
//Crash!!
w.Show();
w.Closed += (sender2, e2) =>
w.Dispatcher.InvokeShutdown();
System.Windows.Threading.Dispatcher.Run();
});
thread.SetApartmentState(ApartmentState.STA);
thread.Start();
}
尝试设置新创建的线程的SynchronizationContext,如上所示。
答案 2 :(得分:0)
如果Lync本身不允许多个单独的Lync实例,则此处给出的解决方案都不起作用。如果我记得的话,设计师就是这样想的。 Lync根本不会启动两次。