如何使用WF4活动来等待事件?
我发现你可以使用Pick活动,这个活动将包含几个PickBranches,每个PickBranches包含一个Trigger和一个Action。如何将触发器活动绑定到任何 .NET 事件?例如,Timer.Tick 事件 ,按键事件,或者也许是我自己的事件?
I found that you can use Pick activity and this activity will contain a few PickBranches, each of which contains a Trigger and an Action. How do I tie the Trigger activity to any .NET event? for example, Timer.Tick event, Key pressed event, or perhaps my own event?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不直接。 WF 活动可以使用书签并等待该书签恢复。现在,您可以根据某些 .NET 事件或按键自由恢复书签,但您仍然需要对该部分进行编码。
You don't directly. A WF activity can use a bookmark and wait for that bookmark to be resumed. Now you are free to resume a bookmark based on some .NET event or a key press but you still have to code that part.