Label StringFormat不起作用

时间:2011-02-21 15:49:09

标签: wpf wpfdatagrid

我正在尝试使用stringFormat格式化{datetime?}属性,但我不知道为什么它不适用于。

这是我的代码

<DataGridTemplateColumn.CellTemplate>
    <DataTemplate>
        <Grid>
            <Label Content="{Binding From, StringFormat='{}{0:dd.MM.yyyy}'}"/>
        </Grid>
    </DataTemplate>
</DataGridTemplateColumn.CellTemplate>

我做错了吗?

1 个答案:

答案 0 :(得分:7)

将标签的内容放入TextBlock

<Label>
    <TextBlock Text="{Binding Path=From, StringFormat='{}{0:dd.MM.yyyy}'}"/>
</Label>