自定义活动属性在 PropertyGrid 中不显示集合编辑器
我已经为 .net Workflow 4.0 编写了一个自定义 CodeActivity,我的(非 inarg/outarg)属性之一是一个集合,我希望能够使用标准集合编辑器在设计器中填充该集合。
这是我的属性
public Collection<string> Columns
{
get;
set;
}
无论我做什么(我已经尝试了所有设计器序列化可见性选项、指定 CollectionEditor 的编辑器属性等),属性检查器永远不会显示集合编辑器“省略号按钮”...
发生了什么事?
I have written a custom CodeActivity for .net Workflow 4.0, and one of my (non inarg/outarg) properties is a collection, which I want to be able to populate in the designer, using the standard collection editor.
This is my property
public Collection<string> Columns
{
get;
set;
}
No matter what I do, (I have tried all the designer serializationvisibility options, Editor attribute specifying CollectionEditor etc etc), the Property Inspectory NEVER shows the collection editor 'ellipses button'...
Whats going on?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为 PropertyGrid 不支持通用集合的“集合编辑器”。
I don't think the PropertyGrid supports "Collection Editor" for generic collections.