wpf 进度条ProgressBar配文字 - zLulus/My_Note GitHub Wiki
<Grid>
<ProgressBar Value="50" Name="pbStatus"/>
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Text="{Binding ElementName=pbStatus, Path=Value, StringFormat={}{0:0}%}"></TextBlock>
</Grid>