自定义活动属性在 PropertyGrid 中不显示集合编辑器

发布于 2024-10-04 11:50:57 字数 315 浏览 6 评论 0原文

我已经为 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白日梦 2024-10-11 11:50:57

我认为 PropertyGrid 不支持通用集合的“集合编辑器”。

I don't think the PropertyGrid supports "Collection Editor" for generic collections.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文