我下载了
http://silverlight.net/learn/videos/silverlight-videos/twitter-search-monitor/#video

Visual Studio 2010将其转换为SL4。运行时提示

最佳答案

在Silverlight SDK中找不到BusyIndicator,在Toolkit中找不到ojit_a,您需要下载并安装。

安装完成后,添加对System.Windows.Controls.Toolkit dll的引用。

使用BusyIndi​​cator将此 namespace 别名添加到页面:

xmlns:toolkit="http://schemas.microsoft.com/winfx/2006/xaml/presentation/toolkit"

然后,您使用toolkit:别名对其进行定义:-
<toolkit:BusyIndicator x:Name="busyIndicator>
    <!-- your page content -->
</toolkit:BusyIndicator>

关于silverlight - MSDN示例代码不起作用: BusyIndicator not found,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5443664/

10-13 07:08