财产收藏 - 芒果 wp7
您好,我的问题是这样的:
我有一个包含许多属性的类,因此我决定将所有属性存储在属性集合中。 这些属性是出于配置目的而需要的,因此我想制作一个包含全部或部分这些属性的页面。
我想在 xaml 页面中绑定,但我不知道如何使用命令和 INotifyPropertyChanged 来更新 xaml,我的意思是我想以 xaml 方式绑定此属性,
<TextBlock Text="{Binding Source={StaticResource <property collection name>}, Path=<name of property>}"/>
有什么解决方案吗? 谢谢
Hi my problem is this:
I have a class with many properties, so I decide to store all in a property collection.
These properties are needed for configuration purpose so I want to make a page with all or part of these properties.
I'd like to bind in xaml page but I can't figure out how use command and INotifyPropertyChanged for update xaml, I mean that I'd like to bind this properties in xaml way
<TextBlock Text="{Binding Source={StaticResource <property collection name>}, Path=<name of property>}"/>
any solution?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试使用将 propertyCollection 作为参数的转换器,然后您可以创建您想要的任何类型/格式的文本输出。
You could try using a converter that takes the propertyCollection as a parameter and you could then create text output of whatever type/format you want from that.
我认为可以实现这一点的唯一方法是使用自定义标记扩展。不幸的是,这些只是在 v5 中才出现在 Silverlight 中。目前尚不清楚是否/何时会出现 WP7。
The only way I can think this might be achievable is with a custom markup extension. Unfortunately these are only just coming to Silverlight in v5. There is no telling if/when it will come to WP7.