C# / 构造函数参数属性
我一直在编写一些类,这些类将在窗口的 XAML 定义中使用。我记得使用了一个名为 - AFAIR - ConstructorParameter 的属性,它通知 XAML 解析器,与此属性对应的某些 XML 属性应被视为构造函数参数而不是属性设置器。
我在互联网上来回搜索,但找不到该属性属于哪个程序集。有人可以帮忙吗?
最好的问候——斯普克。
I've been writing some classes, that will be used inside window's XAML definition. I recall using an attribute called - AFAIR - ConstructorParameter, which informed XAML parser, that certain XML attributes corresponding to this property shall be treated as constructor parameters rather than property setters.
I've searched the Internet back and forth and I cannot find, which assembly this attribute belongs to. Can anyone help?
Best regards -- Spook.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常,您希望有一个默认构造函数和一个用于额外值的属性。
我在 wpfwiki 上找到了这篇文章。
...
Generally you would want to have a default constructor and a property for your extra value.
I found this article on wpfwiki.
...