我正在寻找一个简单的入门应用程序,允许您输入值1 - 10此值传递给WF规则,该规则评估它是否大于,小于或等于5并将结果返回给Windows窗体应用程序,用于在标签中显示结果。
我可以找到很多.net 3.5控制台应用教程,但没有任何内容显示如何使用Windows窗体和.net 4传入和接收结果!
它不需要是上面的示例,但它需要告诉我如何将值传递到规则中,编写规则并从.net 4 c#中的Windows窗体应用程序中读取规则的结果。
我迷路了!
我的基本代码现在可以帮助其他人:
var workflow = new Activity1();
IDictionary<string, object> inputs = new Dictionary<string, object>();
inputs["firstname"] = textBox1.Text;
IDictionary<string, object> outputs = WorkflowInvoker.Invoke(workflow, inputs);
textBox2.Text= outputs["greeting"].ToString();
firstname是一个带有方向的参数传递给工作流程。 问候语是在工作流程中指定方向的参数。
答案 0 :(得分:3)
//查看此链接以启动指针
答案 1 :(得分:0)
以下是我实现这一目标的方法:
1)创建一个名为WindowsFormsApplication7的Windows窗体应用程序,使用最新的Framework。
2)确保包括所有参考文献
3)使用以下代码添加一个类。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Diagnostics;
using System.Threading;
using System.IO;
using System.Timers;
using System.Reflection;
using System.Activities;
using System.Activities.Statements;
namespace WindowsFormsApplication7
{
public class UpdateLabel : CodeActivity
{
Action y;
public InArgument<Label> lbl { get; set; }
public InArgument<string> text { get; set; }
protected override void Execute(CodeActivityContext context)
{
((Label)context.GetValue(lbl)).Invoke(y = () => ((Label)context.GetValue(lbl)).Text = context.GetValue(text).ToString());
}
}
}
4)双击表单并用此代码替换代码。别担心错误。他们会消失。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Diagnostics;
using System.Threading;
using System.IO;
using System.Timers;
using System.Reflection;
using System.Activities;
using System.Activities.Statements;
namespace WindowsFormsApplication7
{
public partial class Form1 : Form
{
Action y;
WorkflowApplication HomeCycleWFApp = null;
AutoResetEvent HomeEvent = null;
Dictionary<string, object> inArgs = new Dictionary<string, object>();
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
label1.Text = "";
}
private void button1_Click(object sender, EventArgs e)
{
RunHomeCycle(label1, textBox1.Text);
}
public void RunHomeCycle(Label lbl, string txt)
{
button1.Enabled = false;
if (!inArgs.ContainsKey("lbl"))
{
inArgs.Add("lbl", lbl);
}
if (!inArgs.ContainsKey("txt"))
{
inArgs.Add("txt", txt);
}
else
{
inArgs["txt"] = txt;
}
HomeEvent = new AutoResetEvent(false);
HomeCycleWFApp = new WorkflowApplication(new Activity1(), inArgs);
HomeCycleWFApp.Completed = delegate (WorkflowApplicationCompletedEventArgs e)
{
button1.Invoke(y = () => button1.Enabled = true);
HomeEvent.Set();
};
HomeCycleWFApp.Run();
}
}
}
5)将以下控件添加到表单
中
label1,textbox1和button1
6)添加名为Activity1.xaml的工作流活动
7)编制解决方案(F6)。如Class1(公共类UpdateLabel:CodeActivity)中所述的UpdateLabel活动必须存在于工具箱中
8)从ToolBox中,将UpdateLabel和WriteLine活动拖到Activity1中
{
{3}}
9)将以下参数lbl(Label)和txt(string)添加到Activity1
10)在UpdateLabel活动中单击一次,按F4(属性)并更新活动参数,如图所示
11)按F5编译并运行应用程序。在文本框中插入一些文本,然后按按钮。文本必须显示在标签中,由Activity1更新,并在输出窗口中显示,由WriteLine活动更新
12)恭喜!!!