xmlns:local="clr-namespace:你的命名空间"
local 可以随便改 比如 my
比如你的类 实现了IValueConverter接口
调用:
定义key
<Grid.Resources>
<local:DateFormatter x:Key="FormatConverter" />
</Grid.Resources>
调用
<TextBlock Text="{Binding Path=ReleaseDate, Mode=OneWay,
Converter={StaticResource FormatConverter},
ConverterParameter=\{0:d\}}" />