答案 0 :(得分:-2)
嗯,很简单。
使用工具包你必须在你的xaml类中声明它的命名空间(我认为你做得那么好吗?)
像这样:
xmlns:toolkit="http://schemas.microsoft.com/winfx/2006/xaml/presentation/toolkit"
在此之后你必须声明你的工具包:
<toolkit:BusyIndicator BackGround="White" >
<elements that need a busy indicator>
</toolkit:BusyIndicator>
您可以通过更改BackGround属性来执行您想要的操作。
希望它有助于