我在wpf中有一些代码,因为我使用了busyindicator并且我设置了datatemplete现在我的问题是我在我的应用程序中使用了mvvm模式,我想在上面使用busyindicator,但我不知道如何在busyindicaor数据模板中绑定文本块。我的代码看起来像
<extended:BusyIndicator Name="_busyIndicator">
<extended:BusyIndicator.BusyContentTemplate>
<DataTemplate>
<StackPanel Margin="4">
<TextBlock Text="Downloading Email" FontWeight="Bold" HorizontalAlignment="Center" Name="Dhaval"/>
<StackPanel Margin="4">
<TextBlock Text="Downloading message 4/10..."/>
<ProgressBar Value="40" Height="15" x:Name="Progress_Dhaval"/>
</StackPanel>
</StackPanel>
</DataTemplate>
</extended:BusyIndicator.BusyContentTemplate>