WPF PropertyGrid 问题
我正在尝试创建一个基于 WPF 的 PropertyGrid。
最近我尝试了 wpg.codeplex.com 项目,但是我在使用这个控件时遇到了一些问题。 现在,我正在尝试开发 http://blog.joachim.at/?p=36 这个项目。
我成功添加了枚举值和支持,但我在集合方面遇到了问题。
例如,我的自定义对象有一个名称为 City 且类型为 Guid 的属性。 我希望,用户可以从组合框中选择城市。
我正在与 TypeConverts、IValueConverts 等进行斗争。
我该如何解决这个问题?
I am trying to create a WPF based PropertyGrid.
Recently i tried wpg.codeplex.com project, but i had some problems with this control.
Now, i am trying to develop http://blog.joachim.at/?p=36 this project.
I successfully added Enum Values, support but i have got problems with collections.
For example my custom object has a property that name is City and type is Guid.
I want, users can select City from combobox.
I was fighting with TypeConverts, IValueConverts, and etc..
How can i solve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
经过几个小时的工作,我解决了我的问题。
我只需要 TypeConverter 来解决这个问题,所以我创建了一个派生自 TypeConverter 的类。
使用自定义类型转换器
After hours of work i solved my problem.
I had need only TypeConverter to solve this, so i created a class that derives from TypeConverter.
Using custom TypeConverter