我创建了一个DateTimeConverter来将我的日期时间转换为MM / dd / yyyy格式。我尝试在我的xaml文件中使用它:
<Window.Resources>
<converters:DateTimeConverter Key="DateTimeConverter"/>
</Window.Resources>
它导致错误说:在DateTimeConverter类型中找不到属性密钥。
然后经过一些谷歌搜索后,我将其改为:
<Window.Resources>
<converters:DateTimeConverter x:Key="DateTimeConverter"/>
</Window.Resources>
它起作用(注意Key之前的“x:”)。
我的“x”默认定义为:xmlns:x =“http://schemas.microsoft.com/winfx/2006/xaml”
它现在正在运作,但我不知道为什么。有人可以请一些光吗?