我有一个绑定到ObservableCollection
.
我的 XAML 代码:
<ListBox Margin="12,148,12,90" ItemsSource="{Binding FuelRecords}" Name="ListBox1">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel>
<TextBlock Text="Fuel quantity: {Binding Quantity}" FontSize="20" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
我想在数量之后显示一个计量单位(升、加仑)。测量单位保存IsolatedStorageSettings
在AppSettings
类(VolumeSetting
属性)中。
最终结果:燃油量:23.45 加仑