Silverlight 4 依赖属性的默认值使用另一个依赖属性的默认值

发布于 2024-12-08 10:38:09 字数 663 浏览 0 评论 0原文

我尝试使用控件的文本块属性的默认值:

 public static readonly DependencyProperty FontFamilyProperty = DependencyProperty.Register(
                             "FontFamily", typeof(FontFamily), typeof(IMTextBlock), new PropertyMetadata(TextBlock.TextProperty.GetMetadata(typeof(FontFamily)).DefaultValue));

我收到此错误:

  The invocation of the constructor on type 'Common.Infrastructure.Controls.IMTextBlock' that matches the specified binding constraints threw an exception.

执行此操作的正确方法是什么?

 TextBlock.TextProperty.GetMetadata(typeof(FontFamily)).DefaultValue

没有给我正确的默认值,或者可能我没有正确使用它。

I am trying to use the default value of the textblock's property for a control by using:

 public static readonly DependencyProperty FontFamilyProperty = DependencyProperty.Register(
                             "FontFamily", typeof(FontFamily), typeof(IMTextBlock), new PropertyMetadata(TextBlock.TextProperty.GetMetadata(typeof(FontFamily)).DefaultValue));

I am getting this error:

  The invocation of the constructor on type 'Common.Infrastructure.Controls.IMTextBlock' that matches the specified binding constraints threw an exception.

What is the right way to do this?

 TextBlock.TextProperty.GetMetadata(typeof(FontFamily)).DefaultValue

is not getting me the correct default value, or maybe I am not using it correctly.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

独自←快乐 2024-12-15 10:38:09

您传递给 GetMetaData 的类型不是属性类型,而是所有者类型。因此你应该使用:-

 TextBlock.FontFamilyProperty.GetMetadata(typeof(TextBlock)).DefaultValue

The type you pass to GetMetaData is the not the property type, its the owner type. Hence you should be using:-

 TextBlock.FontFamilyProperty.GetMetadata(typeof(TextBlock)).DefaultValue
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文