c# – 如何在Silverlight中的附加依赖项属性上设置TypeConverter?

我的目标是能够在XAML中编写:
<Grid>
    <Rectangle Fill="AliceBlue"
            myCore:MyTimePanel.BeginningDate="03/03/2010"
            />
</Grid>

问题:
Silverlight XAML无法从字符串中解析DateTime.所以在运行时我有XamlParseException“无法从该字符串创建DateTime”.

当我使用一个简单的DependencyProperty时,我只需在getter / setter上添加一个TypeConverterattribute即可.像这样(来自here的想法):

[TypeConverter(typeof(DateTimeTypeConverter))]
public DateTime MyDate
{
    get { return (DateTime)GetValue(MyDateProperty); }
    set { SetValue(MyDateProperty,value); }
}

但是使用附加的DP,没有getter / setter.如何才能在XAML中编写字符串日期?

谢谢 !

解决方法

但附加属性一个Get访问器 – 你试过 putting the type converter on the Get accessor吗?

对于特定于版本的链接感到抱歉,它是包含相关信息的链接.从那个页面

3 . You can attribute a type-level TypeConverter on the type that serves as the value type. This enables string conversion of all values of the type. For more information,see TypeConverters and XAML.

4 . You can attribute a property-level TypeConverter on the Get accessor method. This enables string conversion of the attached property. Applying TypeConverterattribute to the Get accessor method rather than the Set accessor method may seem nonintuitive,but that is where XAML processors expect to find the type conversion information (if any) for an attached property. For more information,see TypeConverters and XAML.

相关文章

在要实现单例模式的类当中添加如下代码:实例化的时候:frmC...
1、如果制作圆角窗体,窗体先继承DOTNETBAR的:public parti...
根据网上资料,自己很粗略的实现了一个winform搜索提示,但是...
近期在做DSOFramer这个控件,打算自己弄一个自定义控件来封装...
今天玩了一把WMI,查询了一下电脑的硬件信息,感觉很多代码都...
最近在研究WinWordControl这个控件,因为上级要求在系统里,...