How to load WF workflows dynamically
This is post is about loading and running Workflow foundation (WF) XAML files. It is a powerful technique which can be used to change Workflows on the fly, without re-compiling the application. All this functionalities can be achieved via single line of code.
WorkflowInvoker.Invoke(ActivityXamlServices.Load("Activity1.xaml"));
Happy Programming :)