附加属性未序列化到 XAML 中
我正在使用 XAML 序列化程序将流程文档保存到文件中。我还想为某些元素分配一些附加属性。因此,我创建了一个 Guid 类型的附加属性,其父级是 TextElement。好像没有序列化。有什么想法吗?
I'm using XAML serializer to save a flow document into a file. I also want to assign some attached properties to certain elements. So I created an attached property of type Guid whose parent is a TextElement. It doesn't seem to get serialized. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,伙计们,我解决了这个问题。这是关于 RegisterAttached 的所有者类型参数的。我将其设置为我打算设置属性的目标类型,它应该与实际实现附加属性的类相同。我认为 XAML 序列化程序使用它来在需要时获取更多元数据。所以现在,它起作用了。只是想分享。
OK guys, I resolved the issue. It was about the owner type parameter of the RegisterAttached. I was setting it to the target type that I intend to set the property on, it should be the same class that actually implements the attached property. I think this is used by the XAML serializer to get more metadata when it needs to. So now, it works. Just wanted to share.