I've a sample workflow application, which only have to display an activity an show on which step we are.
The problem is that when I load my activity like this:
TestWorkflow workflow = new TestWorkflow();
_workflowApplication= new WorkflowApplication(workflow );
_workflowDesigner = new WorkflowDesigner();
_workflowDesigner.Load(workflow );
uxGridWorkflowHoster.Children.Add(_workflowDesigner.View);
I'm getting only the root element "sequence" in my box. how to change that?
I get that on visual studio
And in my app, I see only that:
Thank you!