私はbusyindicatorを使用し、datatempleteを設定したという点でwpfにいくつかのコードがあり、アプリケーションでmvvmパターンを使用し、その上でbusyindicatorを使用したいのですが、busyindicaまたはdatatemplete内でテキストブロックをバインドする方法がわかりません。私のコードは次のようになります
<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>