标签 StringFormat 不起作用
我正在尝试使用 stringFormat 格式化 {datetime?} 属性,但我不知道为什么它不适用。
这是我的代码
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<Grid>
<Label Content="{Binding From, StringFormat='{}{0:dd.MM.yyyy}'}"/>
</Grid>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
我做错了什么吗?
I am trying to format a {datetime?} property with stringFormat, but I don't know why it doesn't applied to.
this is my code
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<Grid>
<Label Content="{Binding From, StringFormat='{}{0:dd.MM.yyyy}'}"/>
</Grid>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
Am I doing something wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将标签的内容放入 TextBlock 中
Put the contents of the label into a TextBlock