silverlight 中的 CollectionViewSource
基于 http://msdn.microsoft.com/en-us 中的示例/library/ms771725.aspx 这是针对 WPF 的。我想要相同的 silverlight 样本,因为我的要求是相同的。但我明白了 “AG_E_PARSER_BAD_PROPERTY_VALUE”指向 在我的 XAML 中(仅供参考:xmlns:dat="clr-namespace:System.Windows.Data; assembly=System.Windows.Data")。
请帮助我实现同样的目标。
Based on the sample from http://msdn.microsoft.com/en-us/library/ms771725.aspx
which is for WPF. I wanted same sample for silverlight as my requirements are same. but i get
"AG_E_PARSER_BAD_PROPERTY_VALUE" pointing to
in my XAML (FYI: xmlns:dat="clr-namespace:System.Windows.Data;assembly=System.Windows.Data").
Please help me in achieving the same.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WPF 和 Silverlight 之间以及这些技术中使用的 XAML 之间并不存在直接的一对一匹配。您收到的错误意味着 XAML 正在尝试设置一个不存在或不支持应用于其的值的属性。
要查明这一点,您需要研究正在使用的 Silverlight 版本和要从中移植的 WPF 版本之间的差异。只需谷歌搜索或binging 提供了很多与此相关的链接。
There is not a direct 1-to-1 match between WPF and Silverlight nor the XAML used in those technologies. The error you are getting implies that the XAML is trying to set a property that either doesn't exist or doesn't support the value being applied to it.
To track this down, you'll need to look into the differences between the version of Silverlight you are using and the version of WPF that you are porting from. Just googling or binging gives quite a few links regarding this.