Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
尝试让 WPF 应用程序尝试将字符串字段格式化为日期时间对象时出现此错误:
<DataGridTextColumn Binding="{Binding Date, StringFormat={}{0:dd-MM-yyyy}}" Header="Date"/>
我似乎得到的错误是:
“字符串未被识别为有效的日期时间。”
你如何解决这个问题?
根据我的经验,此错误是由于 Window 标头中缺少设置的语言环境引起的,即:
xml:lang="en-GB"
或者任何合适的东西都需要插入到 Window 标题中,这应该可以解决问题。