WPF:在 StringFormat 中使用特定于区域性的分隔符
有没有办法在 WPF-StringFormat 中使用区域性特定字符? 我正在尝试格式化日期以仅显示由文化特定的...呃..分隔符分隔的月份和年份。
这是我的代码:
Binding="{Binding StartDate.Value, StringFormat={}{0:MM.yyyy}, Converter={StaticResource StartEndDateTimeConverter}"
我会用什么来代替点?
Is there a way to use culture specific characters in a WPF-StringFormat?
I'm trying to format a date to only show the month and the year separated by the culture specific ... uuh.. separator.
Here is my code:
Binding="{Binding StartDate.Value, StringFormat={}{0:MM.yyyy}, Converter={StaticResource StartEndDateTimeConverter}"
What would I use as a replacement for the dot?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了解决方案。而不是“.”我应该使用“/”符号来分隔月份和年份。
I found the solution. Instead of the '.' I should have been using the '/'-Symbol to separate the months from the years.