在属性网格中公开活动的参数集合
来自 WF ADO.NET 活动包 CTP 1 的 ExecuteSqlQuery
活动它的 Parameters
属性有一个很好的对话框。我想对我的自定义活动使用相同的方法,以便用户能够在设计模式下指定任意数量的参数并将每个参数绑定到表达式。有没有办法使用这个现有的对话框?
ExecuteSqlQuery
activity from WF ADO.NET Activity Pack CTP 1 has a nice dialog for its Parameters
property. I would like to use the same approach for my custom activity to provide user with ability to specifying any number of arguments in design mode and binding each argument to an expression. Is there a way to use this existing dialog box?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DynamicActivityDialog
提供此功能:并且在活动中,您必须具有已初始化的属性:
您可以在显示预定义 itens 的对话框之前填充
Dictionary
。DynamicActivityDialog
provides this functionality:And in the activity, you must have the initialized property:
You can populate the
Dictionary<string, Argument>
before show the dialog for predefined itens.