WPF 使用 € 将字符串格式化为货币象征
我有一个需要显示价格的应用程序,为此,我有以下代码:
<Label Content="{Binding Prijs}" ContentStringFormat="C"></Label>
但是,给出的字符串格式如下:$10.00,但我想显示欧元符号(€)而不是美元 -符号($)。我该怎么做?
I've got an application where I need to show a price, for that, I have the following code:
<Label Content="{Binding Prijs}" ContentStringFormat="C"></Label>
However, that gives a stringformat like: $10.00, but i want to show the euro-sign (€) instead of the dollar-sign ($). How do I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要确保控件的
语言
设置正确。Tim Heuer 有一篇博客文章 标题为“Silverlight 中的 StringFormat 和 CurrentCulture”,关于 Silverlight,所以我预计 WPF 中也会出现同样的问题。
Silverlight 的解决方案是将以下行添加到视图构造函数中:
现在,对于 WPF,您可能只需要确保
CurrentThread.CurrentCulture
设置正确,如果没有,请尝试添加此行。You need to make sure that the
Language
of the control is set correctly.Tim Heuer has a blog post entitled "StringFormat and CurrentCulture in Silverlight" about this for Silverlight so I expect the same problem occurs in WPF.
The solution for Silverlight is to add the following line to the view constructor:
Now for WPF you might just need to make sure that the
CurrentThread.CurrentCulture
is set correctly, if not try adding this line too.