依赖属性 - 如何添加所有者以使其充当附加属性?
基本上,有什么方法可以将所有者添加到 DependenyProperty 中,以便它成为该新所有者的附加属性吗?这样我就可以做类似的事情:
PrimaryControl - Original Owner
其他控制 - 第二所有者
<my:Something my:OtherControl.MyProperty="hello world" />
Basically, is there any way to add an owner to a DependenyProperty so that it becomes an attached property of that new owner? That way I can do something like:
PrimaryControl - Original Owner
OtherControl - 2nd owner
<my:Something my:OtherControl.MyProperty="hello world" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以使用 AddOwner 来执行此操作。您的其他控件如下所示:
Yes, you can do this using AddOwner. Your other control would look like: