我正在尝试实现一个顶部带有文本框的进度条,该文本框还显示进度 %。然而,百分比是小数。是否可以通过绑定(bind)对数据集中返回的值进行舍入,还是必须通过后面的代码来完成?

<ProgressBar Grid.Row="2" Grid.ColumnSpan="2" Height="25" HorizontalAlignment="Stretch"  Margin="5,5,5,2" Name="pbProgressIndex" VerticalAlignment="Top" Width="Auto" Value="{Binding Path=ProgressIndex, Mode=OneWayToSource}" />
<TextBlock Grid.Row="2" Grid.ColumnSpan="2" Height="25" Name="txtProgressIndex" Text="{Binding Path=ProgressIndex, Mode=OneWayToSource}" Width="Auto" Foreground="Black" FontWeight="Bold" FontSize="14" FontFamily="Verdana" Padding="5" Margin="5,5,5,5" TextAlignment="Center" />

最佳答案

使用绑定(bind)的 StringFormat 属性,例如:

{Binding Path=ProgressIndex, Mode=OneWayToSource, StringFormat=2N}

10-07 20:11