C# xamarin表单,添加£;标注

C# xamarin表单,添加£;标注,c#,html,xamarin.forms,label,C#,Html,Xamarin.forms,Label,我的标签: <Label Grid.Column="5" Grid.Row="2" VerticalOptions="Start" Text="{Binding SubTotalForItems}"/> 显示正确的小计,例如3.44 如何从前端向开头添加一个£ 类似于Text=“£+{Binding SubTotalForItems}” ??? 谢谢使用 使用 <Label Text="{Binding SubTotalForItems, StringForma

我的标签:

 <Label Grid.Column="5" Grid.Row="2" VerticalOptions="Start" Text="{Binding SubTotalForItems}"/>

显示正确的小计,例如3.44

如何从前端向开头添加一个£

类似于Text=“£+{Binding SubTotalForItems}”

??? 谢谢使用


使用


 <Label Text="{Binding SubTotalForItems, StringFormat='£{0}'}" />