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.
我是 MVVM 的新手,无法确定如何将datetime值转换为short date time以便它们在我的数据网格中正确显示。
datetime
short date time
任何人都可以提供一些示例代码来正确转换datetime吗short date time?
您的 ViewModel 不应该指定它在视图中的显示方式。因此,您的 ViewModel 只有一个带有 DateTime 对象的属性。
然后在视图中指定实际格式;使用 WPF,您可以在使用 StringFormat 参数的绑定中执行此操作:
{Binding MyDate, StringFormat=d}