我有问题。我希望你能帮助我。我有一个标签,价格具有约束力。我的问题是它始终只显示没有€而不是舍入的数字。
<Label Content="{Binding Price2, ConverterCulture='de-DE', StringFormat=C }" Foreground="{Binding PFG2}" MinWidth="90"/>
private float _Price1;
public float Price1
{
get { return this._Price1; }
set
{
if (this._Price1 != value)
{
this._Price1 = value;
OnPropertyChanged();
}
}
}
输出值如下
896.22 1396.87988 2410.0498