にバインドされている ListBox コントロールがあります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 ガロン