将用户输入转换为 Workflow 4.0 中 FlowDocument 内的 ToString() 方法
我有一个生成电子邮件的 Workflow 4.0 应用程序。在创建电子邮件正文的对话框中,用户需要能够输入一些表示要在运行时作为字符串插入的现有 wf 实例变量的字符串值。
因此,他们输入类似以下内容:电子邮件正文,包括 <>。
(假设 ExistingVariable 是一个 int 或类似的东西)
关于如何在运行时使用 ToString() 转换此文本有任何有用的提示吗?
I have a Workflow 4.0 app that generates emails. In a dialog for creating the email body the user needs to be able to input some string value representing an existing wf instance variable to be inserted as a string at runtime.
So they input something like: Email body text including <>.
(say ExistingVariable is an int or something like that)
Any helpful hints for how to convert this text with a ToString() at runtime?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现使用反射是解决这个问题的方法。我能够从 PropertyDescriptorCollection 中获取所需的值,其余的相对简单。
I found that using reflection was the way to go with this. I was able to grab the values I needed from a PropertyDescriptorCollection and the rest was relatively simple.